3f098faa88
- Add platform/compiler detection via Platform.cmake - Apply warning flags (-Wall -Wextra -Werror) via Flags.cmake - Link platform-specific libraries (OpenGL32, winmm, dwmapi)
34 lines
981 B
CMake
34 lines
981 B
CMake
cmake_minimum_required(VERSION 3.21)
|
|
project(cuber VERSION 0.1.0)
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
# Add the deps directory to the module path
|
|
# Required for find_package injection
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/deps")
|
|
|
|
# Platform and compiler detection
|
|
include(Platform)
|
|
include(Flags)
|
|
|
|
# Dependencies
|
|
find_package(fmt REQUIRED)
|
|
find_package(glfw3 REQUIRED)
|
|
find_package(glad REQUIRED)
|
|
find_package(asio REQUIRED)
|
|
|
|
# Target setup
|
|
add_executable(cuber "cuber.cpp"
|
|
"cbt/opengl/context.cpp"
|
|
"cbt/opengl/buffer.cpp"
|
|
"cbt/opengl/texture.cpp"
|
|
"cbt/opengl/descriptor.cpp"
|
|
"cbt/opengl/shader.cpp"
|
|
"cbt/opengl/vao.cpp"
|
|
)
|
|
target_include_directories(cuber PRIVATE ".")
|
|
target_compile_features(cuber PRIVATE cxx_std_23)
|
|
target_compile_options(cuber PRIVATE ${BASE_OPTIONS})
|
|
target_compile_definitions(cuber PRIVATE ${BASE_DEFINITIONS})
|
|
target_link_libraries(cuber PRIVATE fmt::fmt glfw::glfw glad::glad asio::asio ${BASE_LIBRARIES})
|