CMakeLists.txt 187 B

123456
  1. # a simple test case
  2. project (PreOrder)
  3. set(CMAKE_IGNORE_DEPENDENCIES_ORDERING 1)
  4. add_subdirectory(Library)
  5. add_executable (PreOrder simple.cxx)
  6. target_link_libraries(PreOrder simpleLib)