2006-06-11 11:57:25 +00:00
|
|
|
project(frontends)
|
|
|
|
|
|
|
|
include_directories(${TOP_SRC_DIR}/src/frontends)
|
|
|
|
|
|
|
|
add_subdirectory(controllers)
|
2006-06-20 09:57:19 +00:00
|
|
|
add_subdirectory(${qt_postfix})
|
|
|
|
|
|
|
|
|
2006-06-11 11:57:25 +00:00
|
|
|
|
2006-06-16 16:43:17 +00:00
|
|
|
file(GLOB frontends_sources ${TOP_SRC_DIR}/src/frontends/*.C)
|
|
|
|
file(GLOB frontends_headers ${TOP_SRC_DIR}/src/frontends/*.h)
|
2006-06-11 11:57:25 +00:00
|
|
|
|
2006-06-16 16:43:17 +00:00
|
|
|
add_library(frontends STATIC ${frontends_sources} ${frontends_headers})
|
2006-06-11 11:57:25 +00:00
|
|
|
|
2006-09-03 17:51:53 +00:00
|
|
|
source_group("${CODE_GROUP_NAME}" FILES ${frontends_sources} ${frontends_headers})
|
2006-06-11 11:57:25 +00:00
|
|
|
|