added the REQUIRED flag for libconfig and protobuf-c
[umurmur.git] / CMakeLists.txt
index 9b2b5baf1cdae3e9c09371517b46d01d907f3ea6..1fc4f93429bd7b9198bb4e0d8b2bd3459912c2e7 100644 (file)
@@ -9,7 +9,17 @@ include(CheckFunctionExists)
 include(CheckLibraryExists)
 include(CheckSymbolExists)
 
-pkg_check_modules(BASELIBS libconfig)
+if(SSL MATCHES "openssl")
+  pkg_check_modules(SSLIMP REQUIRED openssl)
+else()
+  pkg_check_modules(SSLIMP REQUIRED polarssl)
+  set(USE_POLARSSL ON)
+endif()
+
+pkg_check_modules(LIBCONFIG REQUIRED libconfig)
+pkg_check_modules(LIBPROTOBUF REQUIRED libprotobuf-c)
+
+link_directories(${LIBCONFIG_LIBDIR} ${LIBPROTOBUF_LIBDIR})
 
 check_function_exists(clock_gettime HAVE_CLOCK_GETTIME)
 
@@ -25,13 +35,14 @@ if(NOT HAVE_CLOCK_GETTIME)
   endif()
 endif()
 
-set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -g")
-set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3")
-
 set(SOURCE "")
-
 add_subdirectory(src)
 include_directories(include)
 
 add_executable(umurmurd ${SOURCE})
-target_link_libraries(umurmurd pthread)
+
+
+add_definitions(${LIBCONFIG_CFLAGS} ${LIBPROTOBUF_CFLAGS} ${SSLIMP_CFLAGS})
+target_link_libraries(umurmurd ${LIBCONFIG_LIBRARIES} ${LIBPROTOBUF_LIBRARIES} ${SSLIMP_LIBRARIES})
+
+configure_file(src/config.h.in ${CMAKE_SOURCE_DIR}/src/config.h)