cmake/Tests/RunCMake/target_sources/RelativePathInSubdirPrivate.cmake
2022-03-29 21:10:50 +02:00

10 lines
244 B
CMake

cmake_policy(SET CMP0076 NEW)
enable_language(CXX)
add_library(privatelib)
add_subdirectory(RelativePathInSubdirPrivate)
get_property(privatelib_sources TARGET privatelib PROPERTY SOURCES)
message(STATUS "privatelib: ${privatelib_sources}")