comparison Resources/CMake/MongooseConfiguration.cmake @ 26:6ba765ecf3db

compiling openssl
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 28 Aug 2012 15:10:02 +0200
parents 62bd05fe4b7c
children 042ac60f5bf9
comparison
equal deleted inserted replaced
25:dd1489098265 26:6ba765ecf3db
13 13
14 list(APPEND THIRD_PARTY_SOURCES 14 list(APPEND THIRD_PARTY_SOURCES
15 ${MONGOOSE_SOURCES_DIR}/mongoose.c 15 ${MONGOOSE_SOURCES_DIR}/mongoose.c
16 ) 16 )
17 17
18
18 if (${ENABLE_SSL}) 19 if (${ENABLE_SSL})
19 add_definitions( 20 add_definitions(
20 -DPALANTIR_SSL_ENABLED=1 21 -DPALANTIR_SSL_ENABLED=1
22 -DNO_SSL_DL=1
21 ) 23 )
22 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") 24 if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
23 link_libraries(dl) 25 link_libraries(dl)
24 endif() 26 endif()
25 27