summaryrefslogtreecommitdiffstats
path: root/Tests/Framework
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-06-04 19:28:05 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-06-04 19:28:05 (GMT)
commit64a8eb990ac12152a9c74f273978b926edec3724 (patch)
treec73bac99810df2b306a4887dcd32b11359f02362 /Tests/Framework
parente9fc2cb086f2e9ce35bd8fba483a44f71d6e3d8a (diff)
downloadCMake-64a8eb990ac12152a9c74f273978b926edec3724.zip
CMake-64a8eb990ac12152a9c74f273978b926edec3724.tar.gz
CMake-64a8eb990ac12152a9c74f273978b926edec3724.tar.bz2
ENH: add one of the headers to the regular sources
Diffstat (limited to 'Tests/Framework')
-rw-r--r--Tests/Framework/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Framework/CMakeLists.txt b/Tests/Framework/CMakeLists.txt
index 74871bc..5bcc484 100644
--- a/Tests/Framework/CMakeLists.txt
+++ b/Tests/Framework/CMakeLists.txt
@@ -1,10 +1,10 @@
project(Framework)
-add_library(foo SHARED foo.cxx)
+add_library(foo SHARED foo.cxx foo.h )
set_target_properties(foo PROPERTIES
FRAMEWORK TRUE
FRAMEWORK_PUBLIC_HEADERS "foo.h;foo2.h"
FRAMEWORK_VERSION ver2
- FRAMEWORK_RESOURCES ""
+ FRAMEWORK_RESOURCES "test.lua"
)
add_executable(bar bar.cxx)
target_link_libraries(bar foo)