cmake_minimum_required(VERSION 2.6.0) set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) option(SHARED_TOXCORE "Build Core as a shared library") if(WIN32) option(SHARED_LIBSODIUM "Links libsodium as a shared library") else() option(USE_NACL "Use NaCl library instead of libsodium") endif() if(UNIX) find_package(Curses REQUIRED) endif() if(USE_NACL) find_package(NaCl REQUIRED) include_directories(${NACL_INCLUDE_DIR}) add_definitions(-DVANILLA_NACL) set(LINK_CRYPTO_LIBRARY ${NACL_LIBRARIES}) else() find_package(SODIUM REQUIRED) include_directories(${SODIUM_INCLUDE_DIR}) set(LINK_CRYPTO_LIBRARY ${SODIUM_LIBRARY}) endif() #MinGW prints more warnings for -Wall than gcc does, thus causing build to fail if(NOT WIN32) if(("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")) message(STATUS "==== ${CMAKE_C_COMPILER_ID} detected - Adding compiler flags ====") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror") endif() endif() macro(linkCoreLibraries exe_name) add_dependencies(${exe_name} toxcore) target_link_libraries(${exe_name} toxcore ${LINK_CRYPTO_LIBRARY}) if(WIN32) target_link_libraries(${exe_name} ws2_32) endif() endmacro() cmake_policy(SET CMP0011 NEW) add_subdirectory(core) add_subdirectory(testing) add_subdirectory(other) add_subdirectory(docs)