2020-07-03 03:48:58 +00:00
|
|
|
cmake_minimum_required (VERSION 3.6)
|
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake;${CMAKE_MODULE_PATH}")
|
2020-07-03 03:53:28 +00:00
|
|
|
project(SimpleEngine)
|
2020-07-03 03:48:58 +00:00
|
|
|
|
2021-11-21 06:23:53 +00:00
|
|
|
include(cmrc/CMakeRC.cmake)
|
|
|
|
|
2020-07-03 03:48:58 +00:00
|
|
|
# Add some CMake options:
|
2021-09-06 02:32:13 +00:00
|
|
|
option(SIMPLE_ENGINE_BUILD_EXAMPLES "Build example projects" ON)
|
2020-07-03 03:48:58 +00:00
|
|
|
|
2021-11-20 05:48:47 +00:00
|
|
|
find_package(GLEW REQUIRED)
|
|
|
|
find_package(glfw3 CONFIG REQUIRED)
|
|
|
|
find_package(glm CONFIG REQUIRED)
|
|
|
|
find_package(soil2 CONFIG REQUIRED)
|
2020-07-03 03:48:58 +00:00
|
|
|
|
|
|
|
# Link sources
|
|
|
|
file(GLOB_RECURSE source_list src/*.cpp)
|
2020-07-03 03:53:28 +00:00
|
|
|
add_library(simpleengine STATIC ${source_list})
|
2020-07-03 03:48:58 +00:00
|
|
|
|
|
|
|
# Link headers
|
2020-07-03 03:53:28 +00:00
|
|
|
target_include_directories(simpleengine PUBLIC include PRIVATE include/simpleengine)
|
2020-07-03 03:48:58 +00:00
|
|
|
|
2021-12-13 03:21:10 +00:00
|
|
|
# Embed shaders
|
|
|
|
file(GLOB_RECURSE simpleeng_resources_list resources/**)
|
|
|
|
cmrc_add_resource_library(
|
|
|
|
simpleengine_resources# ALIAS simpleengine::res::shaders
|
|
|
|
#NAMESPACE simpleengine__res
|
|
|
|
#WHENCE resources/shaders
|
|
|
|
#PREFIX resources/shaders
|
|
|
|
${simpleeng_resources_list}
|
|
|
|
)
|
|
|
|
|
2020-07-03 03:48:58 +00:00
|
|
|
# Link dependencies
|
2021-11-20 05:48:47 +00:00
|
|
|
target_link_libraries(simpleengine PUBLIC GLEW::GLEW)
|
|
|
|
target_link_libraries(simpleengine PUBLIC glfw)
|
|
|
|
target_link_libraries(simpleengine PUBLIC glm::glm)
|
|
|
|
target_link_libraries(simpleengine PUBLIC soil2)
|
2021-12-13 03:21:10 +00:00
|
|
|
target_link_libraries(simpleengine PRIVATE simpleengine_resources)
|
2020-07-03 03:48:58 +00:00
|
|
|
|
2021-11-25 21:15:24 +00:00
|
|
|
include_directories(${GLM_INCLUDE_DIRS})
|
|
|
|
|
2020-07-03 03:48:58 +00:00
|
|
|
# Add examples as a target if the user has them enabled
|
2021-09-06 02:32:13 +00:00
|
|
|
if (SIMPLE_ENGINE_BUILD_EXAMPLES)
|
2020-07-03 03:48:58 +00:00
|
|
|
add_subdirectory(examples)
|
|
|
|
endif()
|
|
|
|
|
2021-11-20 05:48:47 +00:00
|
|
|
# Set C++ standard to C++20
|
|
|
|
set_target_properties(simpleengine PROPERTIES CXX_STANDARD 20 CXX_EXTENSIONS OFF)
|