Skip to content

Commit 510ec57

Browse files
committed
cmake typo
1 parent 77b221a commit 510ec57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ if(${BUILD_SHARED_LIBS})
4444
target_link_libraries(${PROJECT_NAME} ${ZLIB_LIBRARIES} ${OPENSSL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} )
4545
else()
4646
find_package(Threads REQUIRED)
47-
target_link_libraries(${PROJECT_NAME} ${ZLIB_LIBRARIES} ${OPENSSL_LIBRARIES}${CMAKE_THREAD_LIBS_INIT} dl)
47+
target_link_libraries(${PROJECT_NAME} ${ZLIB_LIBRARIES} ${OPENSSL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} dl)
4848
endif()
4949
endif()
5050

Test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ find_package(OpenSSL REQUIRED)
2727
target_link_libraries(${PROJECT_NAME} websocket_lite ${ZLIB_LIBRARIES} ${OPENSSL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} )
2828
else()
2929
find_package(Threads REQUIRED)
30-
target_link_libraries(${PROJECT_NAME} websocket_lite ${ZLIB_LIBRARIES} ${OPENSSL_LIBRARIES}${CMAKE_THREAD_LIBS_INIT} dl)
30+
target_link_libraries(${PROJECT_NAME} websocket_lite ${ZLIB_LIBRARIES} ${OPENSSL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} dl)
3131
endif()
3232

3333
if(${BUILD_SHARED_LIBS})

0 commit comments

Comments
 (0)