~unity-api-team/unity-scopes-api/child-scopes-option

« back to all changes in this revision

Viewing changes to demo/CMakeLists.txt

  • Committer: Michi Henning
  • Date: 2013-11-19 02:51:46 UTC
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: michi.henning@canonical.com-20131119025146-kglcalpphl4ozzk7
Fixed scoperegistry to use new scoperunner and to figure out which scopes to run from config files.
Still to do:
- deal with overrides and OEM scopes, particularly the grouping aspect.
- SignalThread needs to invoke a callback for clean shut-down on receipt of SIGINT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
add_subdirectory(scopes)
 
2
add_subdirectory(scope-groups)
 
3
 
1
4
configure_file(Factory.ini.in Factory.ini)
2
 
configure_file(RegistryMain.ini.in RegistryMain.ini)
3
5
configure_file(Runtime.ini.in Runtime.ini)
4
6
configure_file(Registry.ini.in Registry.ini)
5
 
configure_file(Zmq.Registry.ini.in Zmq.Registry.ini)
6
7
configure_file(Zmq.ini.in Zmq.ini)
7
8
 
8
 
add_library(scope-A MODULE scope-A.cpp)
9
 
add_library(scope-B MODULE scope-B.cpp)
10
 
add_library(scope-C MODULE scope-C.cpp)
11
 
add_library(scope-D MODULE scope-D.cpp)
12
 
add_library(scope-slow MODULE scope-slow.cpp)
13
 
 
14
 
add_executable(scoperunner-A scoperunner-A.cpp)
15
 
target_link_libraries(scoperunner-A ${UNITY_SCOPES_LIB} ${OTHER_LIBS})
16
 
 
17
 
add_executable(scoperunner-BC scoperunner-BC.cpp)
18
 
target_link_libraries(scoperunner-BC ${UNITY_SCOPES_LIB} ${OTHER_LIBS})
19
 
 
20
 
add_executable(scoperunner-D scoperunner-D.cpp)
21
 
target_link_libraries(scoperunner-D ${UNITY_SCOPES_LIB} ${OTHER_LIBS})
22
 
 
23
 
add_executable(scoperunner-slow scoperunner-slow.cpp)
24
 
target_link_libraries(scoperunner-slow ${UNITY_SCOPES_LIB} ${OTHER_LIBS})
25
9
 
26
10
add_executable(client client.cpp)
27
11
target_link_libraries(client ${UNITY_SCOPES_LIB} ${OTHER_LIBS})