~mardy/unity-scopes-api/clientid-1554040

« back to all changes in this revision

Viewing changes to demo/CMakeLists.txt

  • Committer: Michi Henning
  • Date: 2015-02-25 05:20:57 UTC
  • mfrom: (163.386.1 devel)
  • mto: (163.386.2 devel)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: michi.henning@canonical.com-20150225052057-9p21sge1myzaowcb
Merged devel and resolved conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
add_executable(scopes-client client.cpp)
11
11
# Add_dependencies should be used sparingly. In this case we need the global
12
 
# header to be generated before we start building the client binary.
 
12
# header to be generated before we start building the client binary, and
 
13
# we need an up-to-date registry to run it.
13
14
add_dependencies(scopes-client globalheader)
 
15
add_dependencies(scopes-client scoperegistry)
14
16
target_link_libraries(scopes-client ${UNITY_SCOPES_LIB} ${OTHER_LIBS})
15
17
install(TARGETS scopes-client DESTINATION bin)