diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..6b81e25 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,36 @@ +cmake_minimum_required(VERSION 2.6) + +if (NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build (Debug or Release)" FORCE) +endif() + +project(subconscious) + +# Configuration headers +set(subconscious_VERSION_MAJOR 0) +set(subconscious_VERSION_MINOR 1) +configure_file( + "${PROJECT_SOURCE_DIR}/src/main/headers/config.h.in" + "${PROJECT_SOURCE_DIR}/src/main/headers/config.h" +) + +# include directories +include_directories("${PROJECT_SOURCE_DIR}/src/main/headers") + +# sources +file(GLOB_RECURSE SOURCES RELATIVE ${CMAKE_SOURCE_DIR} "src/main/cpp/*.cpp") + +# executable +set(EXECUTABLE_NAME "subconscious") +add_executable(${EXECUTABLE_NAME} ${SOURCES}) + +# SFML library +set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules" ${CMAKE_MODULE_PATH}) +find_package(SFML 2 REQUIRED network audio graphics window system) +if (SFML_FOUND) + include_directories(${SFML_INCLUDE_DIR}) + target_link_libraries(${EXECUTABLE_NAME} ${SFML_LIBRARIES} ${SFML_DEPENDENCIES}) +endif () + +# install target +install(TARGETS ${EXECUTABLE_NAME} DESTINATION bin) |