We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de1159 commit bba7589Copy full SHA for bba7589
src/SeExpr/CMakeLists.txt
@@ -79,9 +79,11 @@ endif()
79
80
## Make the SeExpr library with and without LLVM support
81
file(GLOB llvm_cpp "*.cpp")
82
-add_library(SeExpr2 SHARED ${io_cpp} ${core_cpp} ${parser_cpp} ${llvm_cpp})
83
if (NOT WIN32)
+ add_library(SeExpr2 SHARED ${io_cpp} ${core_cpp} ${parser_cpp} ${llvm_cpp})
84
target_link_libraries(SeExpr2 "dl" "pthread")
85
+else()
86
+ add_library(SeExpr2 STATIC ${io_cpp} ${core_cpp} ${parser_cpp} ${llvm_cpp})
87
endif()
88
89
## Install binary and includes
0 commit comments