Blame view

test/CMakeLists.txt 369 Bytes
02844e59   Peter M. Groen   Added test to lib...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  #
  # Don't call this file directly from cmake.
  # TRhis file is included from the upper directory.
  #
  # Build rules for the daemon library
  
  add_executable(MyExampleDaemon
                 MyDaemonExample.cpp
  )
  
  target_include_directories(MyExampleDaemon PRIVATE
      ${CMAKE_CURRENT_SOURCE_DIR}
      ../include
  )
  
  target_link_libraries(MyExampleDaemon PRIVATE
      daemonbase
  )