blah/CMakeLists.txt

119 lines
2.7 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.12)
2020-08-26 15:38:01 +08:00
project(blah)
# C++ version
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_library(blah
src/core/app.cpp
src/core/filesystem.cpp
src/core/log.cpp
src/core/time.cpp
src/graphics/blend.cpp
src/graphics/framebuffer.cpp
src/graphics/material.cpp
src/graphics/mesh.cpp
src/graphics/renderpass.cpp
src/graphics/shader.cpp
src/graphics/texture.cpp
src/input/input.cpp
src/input/virtual_stick.cpp
src/input/virtual_button.cpp
src/input/virtual_axis.cpp
2020-10-25 08:34:20 +08:00
src/containers/str.cpp
2020-08-26 15:38:01 +08:00
src/drawing/batch.cpp
src/drawing/spritefont.cpp
src/drawing/subtexture.cpp
src/images/aseprite.cpp
src/images/font.cpp
src/images/image.cpp
src/images/packer.cpp
src/math/calc.cpp
src/math/circle.cpp
src/math/color.cpp
src/math/line.cpp
src/math/mat3x2.cpp
src/math/mat4x4.cpp
src/math/point.cpp
src/math/quad.cpp
src/math/rect.cpp
src/math/rectI.cpp
src/math/stopwatch.cpp
src/math/vec2.cpp
2020-08-26 15:38:01 +08:00
src/streams/bufferstream.cpp
src/streams/filestream.cpp
src/streams/memorystream.cpp
src/streams/stream.cpp
src/internal/graphics_backend_gl.cpp
src/internal/graphics_backend_d3d11.cpp
src/internal/graphics_backend_dummy.cpp
src/internal/platform_backend_sdl2.cpp
2020-12-27 06:44:48 +08:00
)
2020-08-26 15:38:01 +08:00
2020-12-29 10:31:06 +08:00
target_include_directories(blah
2020-08-26 15:38:01 +08:00
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
2020-08-26 15:38:01 +08:00
PRIVATE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
2020-08-26 15:38:01 +08:00
)
# Platform Variables
set(SDL2_ENABLED true CACHE BOOL "Use SDL2 as the System implementation")
2020-12-29 10:31:06 +08:00
set(OPENGL_ENABLED true CACHE BOOL "Use OpenGL graphics implementation")
set(D3D11_ENABLED false CACHE BOOL "Use D3D11 graphics implementation")
set(LIBS "")
2020-08-26 15:38:01 +08:00
# add OpenGL definition if we're using it
2020-08-26 15:38:01 +08:00
if (OPENGL_ENABLED)
add_compile_definitions(BLAH_USE_OPENGL)
endif()
# add D3D11 definition if we're using it
2020-12-29 10:31:06 +08:00
if (D3D11_ENABLED)
add_compile_definitions(BLAH_USE_D3D11)
set(LIBS ${LIBS} d3d11.lib dxguid.lib D3Dcompiler.lib)
endif()
# Link and create SDL2 Definition if we're using it
2020-08-26 15:38:01 +08:00
if (SDL2_ENABLED)
add_compile_definitions(BLAH_USE_SDL2)
2021-01-08 23:42:58 +08:00
if (EMSCRIPTEN)
2021-01-04 16:58:24 +08:00
set_target_properties(blah PROPERTIES COMPILE_FLAGS "-s USE_SDL=2")
else()
2021-01-15 11:37:55 +08:00
# Attempt to find SDL2
find_package(SDL2 QUIET)
# If CMake cannot find SDL2 library, then it gets downloaded and compiled that way
if (NOT ${SDL2_FOUND})
include(FetchContent)
FetchContent_Declare(
SDL2
GIT_REPOSITORY https://github.com/SDL-mirror/SDL
GIT_TAG release-2.0.14 # grab latest stable release
)
FetchContent_GetProperties(SDL2)
if (NOT sdl2_POPULATED)
FetchContent_Populate(SDL2)
add_subdirectory(${sdl2_SOURCE_DIR} ${sdl2_BINARY_DIR})
endif()
2021-01-04 16:58:24 +08:00
endif()
2021-01-08 23:42:58 +08:00
2021-01-15 11:37:55 +08:00
# Either way we are linking to SDL2
set(LIBS ${LIBS} SDL2)
endif()
2020-12-29 10:31:06 +08:00
endif()
target_link_libraries(blah PUBLIC ${LIBS})