Revision: 77709
          http://sourceforge.net/p/brlcad/code/77709
Author:   starseeker
Date:     2020-11-07 02:59:04 +0000 (Sat, 07 Nov 2020)
Log Message:
-----------
More imports

Modified Paths:
--------------
    brlcad/branches/extbuild/src/other/ext/stepcode/src/core/CMakeLists.txt
    brlcad/branches/extbuild/src/other/ext/stepcode/src/dai/CMakeLists.txt
    brlcad/branches/extbuild/src/other/ext/stepcode/src/editor/CMakeLists.txt

Modified: 
brlcad/branches/extbuild/src/other/ext/stepcode/src/core/CMakeLists.txt
===================================================================
--- brlcad/branches/extbuild/src/other/ext/stepcode/src/core/CMakeLists.txt     
2020-11-07 02:55:32 UTC (rev 77708)
+++ brlcad/branches/extbuild/src/other/ext/stepcode/src/core/CMakeLists.txt     
2020-11-07 02:59:04 UTC (rev 77709)
@@ -36,7 +36,11 @@
 add_library(stepcore SHARED ${CORE_SRCS})
 set_target_properties(stepcore PROPERTIES VERSION ${STEPCODE_ABI_VERSION} 
SOVERSION ${STEPCODE_ABI_SOVERSION})
 target_link_libraries(stepcore steputils stepdai)
-target_compile_definitions(stepcore PRIVATE STEPCODE_CORE_DLL_EXPORTS)
+target_compile_definitions(stepcore PRIVATE
+  STEPCODE_CORE_DLL_EXPORTS
+  STEPCODE_UTILS_DLL_IMPORTS
+  STEPCODE_DAI_DLL_IMPORTS
+  )
 install(TARGETS stepcore
   RUNTIME DESTINATION ${BIN_DIR}
   LIBRARY DESTINATION ${LIB_DIR}

Modified: brlcad/branches/extbuild/src/other/ext/stepcode/src/dai/CMakeLists.txt
===================================================================
--- brlcad/branches/extbuild/src/other/ext/stepcode/src/dai/CMakeLists.txt      
2020-11-07 02:55:32 UTC (rev 77708)
+++ brlcad/branches/extbuild/src/other/ext/stepcode/src/dai/CMakeLists.txt      
2020-11-07 02:59:04 UTC (rev 77709)
@@ -15,7 +15,10 @@
 add_library(stepdai SHARED ${DAI_SRCS})
 set_target_properties(stepdai PROPERTIES VERSION ${STEPCODE_ABI_VERSION} 
SOVERSION ${STEPCODE_ABI_SOVERSION})
 target_link_libraries(stepdai steputils)
-target_compile_definitions(stepdai PRIVATE STEPCODE_DAI_DLL_EXPORTS)
+target_compile_definitions(stepdai PRIVATE
+  STEPCODE_DAI_DLL_EXPORTS
+  STEPCODE_UTILS_DLL_IMPORTS
+  )
 install(TARGETS stepdai
   RUNTIME DESTINATION ${BIN_DIR}
   LIBRARY DESTINATION ${LIB_DIR}

Modified: 
brlcad/branches/extbuild/src/other/ext/stepcode/src/editor/CMakeLists.txt
===================================================================
--- brlcad/branches/extbuild/src/other/ext/stepcode/src/editor/CMakeLists.txt   
2020-11-07 02:55:32 UTC (rev 77708)
+++ brlcad/branches/extbuild/src/other/ext/stepcode/src/editor/CMakeLists.txt   
2020-11-07 02:59:04 UTC (rev 77709)
@@ -11,7 +11,12 @@
 add_library(stepeditor SHARED ${EDITOR_SRCS})
 set_target_properties(stepeditor PROPERTIES VERSION ${STEPCODE_ABI_VERSION} 
SOVERSION ${STEPCODE_ABI_SOVERSION})
 target_link_libraries(stepeditor stepcore stepdai steputils)
-target_compile_definitions(stepeditor PRIVATE STEPCODE_EDITOR_DLL_EXPORTS)
+target_compile_definitions(stepeditor PRIVATE
+  STEPCODE_EDITOR_DLL_EXPORTS
+  STEPCODE_CORE_DLL_IMPORTS
+  STEPCODE_DAI_DLL_IMPORTS
+  STEPCODE_UTILS_DLL_IMPORTS
+  )
 install(TARGETS stepeditor
   RUNTIME DESTINATION ${BIN_DIR}
   LIBRARY DESTINATION ${LIB_DIR}

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to