File tree 3 files changed +13
-0
lines changed
3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -90,3 +90,5 @@ examples/wsperf/wsperf_client
90
90
install
91
91
Makefile
92
92
bin
93
+
94
+ Testing /Temporary /CTestCostData.txt
Original file line number Diff line number Diff line change @@ -192,6 +192,10 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
192
192
set (Boost_USE_STATIC_LIBS TRUE )
193
193
endif ()
194
194
195
+ if (NOT Boost_USE_STATIC_LIBS)
196
+ add_definitions (/DBOOST_TEST_DYN_LINK)
197
+ endif ()
198
+
195
199
set (Boost_FIND_REQUIRED TRUE )
196
200
set (Boost_FIND_QUIETLY TRUE )
197
201
set (Boost_DEBUG FALSE )
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ macro (print_used_build_config)
15
15
message (STATUS "WEBSOCKETPP_PLATFORM_LIBS = ${WEBSOCKETPP_PLATFORM_LIBS} " )
16
16
message (STATUS "WEBSOCKETPP_PLATFORM_TLS_LIBS = ${WEBSOCKETPP_PLATFORM_TLS_LIBS} " )
17
17
message ("" )
18
+ message (STATUS "OPENSSL_FOUND = ${OPENSSL_FOUND} " )
19
+ message (STATUS "OPENSSL_INCLUDE_DIR = ${OPENSSL_INCLUDE_DIR} " )
20
+ message (STATUS "OPENSSL_LIBRARIES = ${OPENSSL_LIBRARIES} " )
21
+ message (STATUS "OPENSSL_VERSION = ${OPENSSL_VERSION} " )
22
+ message ("" )
18
23
endmacro ()
19
24
20
25
# Adds the given folder_name into the source files of the current project.
@@ -49,6 +54,8 @@ macro (build_executable TARGET_NAME)
49
54
50
55
include_directories (${WEBSOCKETPP_ROOT} ${WEBSOCKETPP_INCLUDE} )
51
56
57
+ target_link_libraries (${TARGET_NAME} ${WEBSOCKETPP_PLATFORM_LIBS} )
58
+
52
59
set_target_properties (${TARGET_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${WEBSOCKETPP_BIN} )
53
60
set_target_properties (${TARGET_NAME} PROPERTIES DEBUG_POSTFIX d)
54
61
endmacro ()
You can’t perform that action at this time.
0 commit comments