mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-29 10:39:28 -05:00
13 lines
315 B
CMake
13 lines
315 B
CMake
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(SourcesProperty)
|
|
|
|
add_library(iface INTERFACE)
|
|
set_property(TARGET iface PROPERTY INTERFACE_SOURCES iface.cpp)
|
|
|
|
add_executable(SourcesProperty main.cpp)
|
|
target_link_libraries(SourcesProperty iface)
|
|
|
|
set_property(TARGET SourcesProperty APPEND PROPERTY SOURCES prop.cpp)
|