CMakeLists.txt 341 B

12345678910
  1. project(ANOTHER_PROJ)
  2. # subdir to an out of source and out of binary directory
  3. add_subdirectory(${OutOfSource_SOURCE_DIR}/../OutOfBinary
  4. ${OutOfSource_BINARY_DIR}/../OutOfBinary)
  5. # subdir to a sibling dir
  6. add_subdirectory(${OutOfSource_SOURCE_DIR}/${KEN}OutOfSourceSubdir OutOfSourceSubdir )
  7. add_library(subdir subdir.c)