Mercurial > hg > orthanc
diff Resources/CMake/MongooseConfiguration.cmake @ 0:3959d33612cc
initial commit
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 19 Jul 2012 14:32:22 +0200 |
parents | |
children | 3a584803783e |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Resources/CMake/MongooseConfiguration.cmake Thu Jul 19 14:32:22 2012 +0200 @@ -0,0 +1,21 @@ +SET(MONGOOSE_SOURCES_DIR ${CMAKE_BINARY_DIR}/mongoose) +DownloadPackage("http://mongoose.googlecode.com/files/mongoose-3.1.tgz" "${MONGOOSE_SOURCES_DIR}" "" "") + +# Patch mongoose +execute_process( + COMMAND patch mongoose.c ${CMAKE_SOURCE_DIR}/Resources/mongoose-patch.diff + WORKING_DIRECTORY ${MONGOOSE_SOURCES_DIR} + ) + +include_directories( + ${MONGOOSE_SOURCES_DIR} + ) + +list(APPEND THIRD_PARTY_SOURCES + ${MONGOOSE_SOURCES_DIR}/mongoose.c + ) + +add_definitions( + # Remove SSL support from mongoose + -DNO_SSL=1 + )