From 1010d0d526ad7419449f19ac4db42d63f7731540 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Fri, 16 Feb 2018 21:10:24 +0100 Subject: Add basic widget implementation (not usable) and configure cmake --- CMakeLists.txt | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') 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) -- cgit v1.2.1