summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/TargetSources/OriginDebug.cmake
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-03-27 12:16:59 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-02 21:14:02 (GMT)
commit6e636f2ebaf78141f4d0a36c96804b9a1bc89857 (patch)
tree6c46f8eea138028f770c2971f652bdcbbbb15d03 /Tests/RunCMake/TargetSources/OriginDebug.cmake
parent3676fb49634efd01755aa5c12d58e2f2bf20d09f (diff)
downloadCMake-6e636f2ebaf78141f4d0a36c96804b9a1bc89857.zip
CMake-6e636f2ebaf78141f4d0a36c96804b9a1bc89857.tar.gz
CMake-6e636f2ebaf78141f4d0a36c96804b9a1bc89857.tar.bz2
cmTarget: Make the SOURCES origin tracable.
Diffstat (limited to 'Tests/RunCMake/TargetSources/OriginDebug.cmake')
-rw-r--r--Tests/RunCMake/TargetSources/OriginDebug.cmake14
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/RunCMake/TargetSources/OriginDebug.cmake b/Tests/RunCMake/TargetSources/OriginDebug.cmake
new file mode 100644
index 0000000..911a7d4
--- /dev/null
+++ b/Tests/RunCMake/TargetSources/OriginDebug.cmake
@@ -0,0 +1,14 @@
+
+cmake_minimum_required(VERSION 3.0)
+
+project(OriginDebug)
+
+set(CMAKE_DEBUG_TARGET_PROPERTIES SOURCES)
+
+add_library(iface INTERFACE)
+set_property(TARGET iface PROPERTY INTERFACE_SOURCES
+ empty_1.cpp
+)
+
+add_library(OriginDebug empty_2.cpp)
+target_link_libraries(OriginDebug iface)