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 ec3a29f commit bdcb3a4Copy full SHA for bdcb3a4
src/wif/CMakeLists.txt
@@ -12,19 +12,23 @@ set(LIBWIF_SOURCES
12
storage/ipAddress.cpp
13
)
14
15
-if(BUILD_WITH_UNIREC)
16
- list(APPEND LIBWIF_SOURCES
17
- reporters/unirecReporter.cpp
18
- )
19
-endif()
20
-
21
set(LIBWIF_LIBS
22
Boost::regex
23
Python3::Python
24
Python3::NumPy
25
dstlib::dst
26
27
+if(BUILD_WITH_UNIREC)
+ list(APPEND LIBWIF_SOURCES
+ reporters/unirecReporter.cpp
+ )
+ list(APPEND LIBWIF_LIBS
+ unirec::unirec
28
+ unirec::unirec++
29
30
+endif()
31
+
32
add_library(wif SHARED ${LIBWIF_SOURCES})
33
target_link_libraries(wif PRIVATE ${LIBWIF_LIBS})
34
target_include_directories(wif PUBLIC ${CMAKE_SOURCE_DIR}/include)
0 commit comments