File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 2.6)
22PROJECT (sioclient)
33
4+ #set(BOOST_ROOT "D:/BoostRoot" )
5+ set (BOOST_INCLUDEDIR "D:/boost_1_55_0" )
6+ set (BOOST_LIBRARYDIR "D:/boost_1_55_0/boost_build/release/lib" )
7+ set (Boost_DEBUG 1)
48set (Boost_USE_STATIC_LIBS ON )
59set (Boost_USE_MULTITHREADED ON )
610set (Boost_USE_STATIC_RUNTIME OFF )
7- find_package (Boost 1.57 .0 COMPONENTS system date_time random asio )
11+ find_package (Boost 1.55 .0 COMPONENTS system date_time random)
812
913if (Boost_FOUND)
1014 include_directories (${Boost_INCLUDE_DIRS} ${PROJECT_SOURCE_DIR} /src ${PROJECT_SOURCE_DIR} /lib/websocketpp ${PROJECT_SOURCE_DIR} /lib/rapidjson/include )
1115 aux_source_directory (${PROJECT_SOURCE_DIR} /src ALL_SRC)
1216 add_library (sioclient STATIC ${ALL_SRC} )
1317 target_link_libraries (sioclient ${Boost_LIBRARIES} )
14- endif ()
18+ endif ()
You can’t perform that action at this time.
0 commit comments