File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,19 @@ The easiest way to use slick_socket is to fetch it directly in your CMakeLists.t
2626``` cmake
2727include(FetchContent)
2828
29+ # Uncomment the line below to disable static lib build on Windows
30+ # set(BUILD_SLICK_SOCKET_STATIC_LIBS OFF CACHE BOOL "" FORCE)
31+
32+ # Uncomment the line below to disable shared lib build on Windows
33+ # set(BUILD_SLICK_SOCKET_SHARED_LIBS OFF CACHE BOOL "" FORCE)
34+
35+ # Disable slick_socket example, and tests
36+ set(BUILD_SLICK_SOCKET_EXAMPLES OFF CACHE BOOL "" FORCE)
37+ set(BUILD_SLICK_SOCKET_TESTING OFF CACHE BOOL "" FORCE)
2938FetchContent_Declare(
3039 slick_socket
3140 GIT_REPOSITORY https://github.com/SlickQuant/slick_socket.git
32- GIT_TAG v1.0.0.1 # Use the desired version
41+ GIT_TAG v1.0.3 # Use the desired version
3342)
3443
3544FetchContent_MakeAvailable(slick_socket)
You can’t perform that action at this time.
0 commit comments