ENH: add one of the headers to the regular sources

This commit is contained in:
Bill Hoffman 2007-06-04 15:28:05 -04:00
parent e9fc2cb086
commit 64a8eb990a
1 changed files with 2 additions and 2 deletions

View File

@ -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)