RelativePathInSubdirGenEx.cmake 288 B

12345678910
  1. cmake_policy(SET CMP0076 NEW)
  2. add_library(genexlib)
  3. add_subdirectory(RelativePathInSubdirGenEx)
  4. get_property(genexlib_sources TARGET genexlib PROPERTY SOURCES)
  5. message(STATUS "genexlib: ${genexlib_sources}")
  6. add_executable(genexmain main.cpp)
  7. target_link_libraries(genexmain genexlib)