mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
10 lines
252 B
CMake
10 lines
252 B
CMake
cmake_policy(SET CMP0076 NEW)
|
|
enable_language(CXX)
|
|
|
|
add_library(privatelib)
|
|
|
|
include("RelativePathInSubdirInclude/CMakeLists.txt")
|
|
|
|
get_property(privatelib_sources TARGET privatelib PROPERTY SOURCES)
|
|
message(STATUS "privatelib: ${privatelib_sources}")
|