Skip to content

Commit 430fb82

Browse files
author
Peter Thorson
committed
Fix typo in cmake files
1 parent 01d4109 commit 430fb82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
7070
############ Compiler specific setup
7171

7272
set (WEBSOCKETPP_PLATFORM_LIBS "")
73-
set (WEBSOCKETPP_PLATFORM_TSL_LIBS "")
73+
set (WEBSOCKETPP_PLATFORM_TLS_LIBS "")
7474
set (WEBSOCKETPP_BOOST_LIBS "")
7575

7676
# VC9 and C++11 reasoning
@@ -111,7 +111,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
111111
# g++
112112
if (CMAKE_COMPILER_IS_GNUCXX)
113113
set (WEBSOCKETPP_PLATFORM_LIBS pthread rt)
114-
set (WEBSOCKETPP_PLATFORM_TSL_LIBS ssl crypto)
114+
set (WEBSOCKETPP_PLATFORM_TLS_LIBS ssl crypto)
115115
set (WEBSOCKETPP_BOOST_LIBS system thread)
116116
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
117117
if (NOT APPLE)
@@ -133,7 +133,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
133133
else()
134134
set (WEBSOCKETPP_PLATFORM_LIBS pthread)
135135
endif()
136-
set (WEBSOCKETPP_PLATFORM_TSL_LIBS ssl crypto)
136+
set (WEBSOCKETPP_PLATFORM_TLS_LIBS ssl crypto)
137137
set (WEBSOCKETPP_BOOST_LIBS system thread)
138138
set (CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-std=c++0x -stdlib=libc++") # todo: is libc++ really needed here?
139139
if (NOT APPLE)

0 commit comments

Comments
 (0)