Skip to content

Commit afb5c27

Browse files
committed
update README
1 parent 3502b2c commit afb5c27

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,19 @@ The easiest way to use slick_socket is to fetch it directly in your CMakeLists.t
2626
```cmake
2727
include(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)
2938
FetchContent_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
3544
FetchContent_MakeAvailable(slick_socket)

0 commit comments

Comments
 (0)