Sfoglia il codice sorgente

ENH: add one of the headers to the regular sources

Bill Hoffman 18 anni fa
parent
commit
64a8eb990a
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      Tests/Framework/CMakeLists.txt

+ 2 - 2
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)