Compare commits
2 Commits
fc91f6662e
...
620adb20f9
Author | SHA1 | Date | |
---|---|---|---|
620adb20f9 | |||
507ba483b3 |
@ -1,6 +1,12 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(CodingGame LANGUAGES C CXX)
|
||||
|
||||
# ---------- Build-type defaults (only affects single-config generators like Ninja/Make) ----------
|
||||
if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE)
|
||||
endif()
|
||||
|
||||
# ---------- Dependencies ----------
|
||||
if (UNIX)
|
||||
include(FetchContent)
|
||||
FetchContent_Declare(
|
||||
@ -20,10 +26,6 @@ elseif (MSVC) # vcpkg
|
||||
find_package(glm CONFIG REQUIRED)
|
||||
endif()
|
||||
|
||||
# Add -ggdb to debug builds
|
||||
# set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -ggdb")
|
||||
# set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb")
|
||||
|
||||
add_executable(CodingGame
|
||||
src/IO/parser.cpp
|
||||
src/IO/file_manager.cpp
|
||||
@ -54,7 +56,15 @@ target_link_libraries(CodingGame PRIVATE
|
||||
glm::glm
|
||||
)
|
||||
|
||||
# Debug flags
|
||||
# ---------- Visibility (helps optimizer & smaller binaries on Release) ----------
|
||||
# Only affects non-Windows compilers
|
||||
set_target_properties(CodingGame PROPERTIES
|
||||
CXX_VISIBILITY_PRESET hidden
|
||||
VISIBILITY_INLINES_HIDDEN YES
|
||||
)
|
||||
|
||||
# ---------- Per-config flags ----------
|
||||
# Debug flags (your original intent, kept)
|
||||
if (MSVC)
|
||||
target_compile_options(CodingGame PRIVATE $<$<CONFIG:Debug>:/Zi>)
|
||||
target_link_options(CodingGame PRIVATE $<$<CONFIG:Debug>:/DEBUG:FULL>)
|
||||
@ -62,6 +72,44 @@ else()
|
||||
target_compile_options(CodingGame PRIVATE $<$<CONFIG:Debug>:-ggdb>)
|
||||
endif()
|
||||
|
||||
# Release flags
|
||||
if (MSVC)
|
||||
# /O2: optimize speed, /GL: whole program opt (LTCG), /DNDEBUG: disable asserts
|
||||
target_compile_options(CodingGame PRIVATE
|
||||
$<$<CONFIG:Release>:/O2>
|
||||
$<$<CONFIG:Release>:/DNDEBUG>
|
||||
$<$<CONFIG:RelWithDebInfo>:/O2>
|
||||
)
|
||||
# Link-time codegen & extra linker opts for smaller/faster binaries
|
||||
target_link_options(CodingGame PRIVATE
|
||||
$<$<CONFIG:Release>:/LTCG /OPT:ICF /OPT:REF>
|
||||
$<$<CONFIG:RelWithDebInfo>:/LTCG /OPT:ICF /OPT:REF>
|
||||
)
|
||||
else()
|
||||
# GCC/Clang
|
||||
# -O3 for max opts, -ffast-math optional but can be risky; we keep it OFF by default.
|
||||
option(CODINGGAME_USE_MARCH_NATIVE "Enable -march=native on Release for this machine" ON)
|
||||
target_compile_options(CodingGame PRIVATE
|
||||
$<$<CONFIG:Release>:-O3>
|
||||
$<$<AND:$<CONFIG:Release>,$<BOOL:${CODINGGAME_USE_MARCH_NATIVE}>>:-march=native>
|
||||
$<$<CONFIG:Release>:-DNDEBUG>
|
||||
$<$<CONFIG:RelWithDebInfo>:-O3 -g>
|
||||
)
|
||||
# Linker: enable LTO when available; optionally strip symbols on non-Apple
|
||||
include(CheckIPOSupported) # IPO == LTO in CMake terms
|
||||
check_ipo_supported(RESULT ipo_supported OUTPUT ipo_msg)
|
||||
if(ipo_supported)
|
||||
set_property(TARGET CodingGame PROPERTY INTERPROCEDURAL_OPTIMIZATION_RELEASE TRUE)
|
||||
set_property(TARGET CodingGame PROPERTY INTERPROCEDURAL_OPTIMIZATION_RELWITHDEBINFO TRUE)
|
||||
endif()
|
||||
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT APPLE)
|
||||
# -s strips symbols at link stage (use only for pure Release)
|
||||
target_link_options(CodingGame PRIVATE $<$<CONFIG:Release>:-s>)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# ---------- Windows: copy runtime DLLs ----------
|
||||
if (WIN32)
|
||||
add_custom_command(TARGET CodingGame POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||
|
24
README.md
24
README.md
@ -6,16 +6,26 @@ This is a basic future game engine for OpenGL 3D rendered games
|
||||
|
||||
## Building on Windows
|
||||
|
||||
In order to configure and run project on windows platform use following commands.
|
||||
In order to configure and run project on windows platform accomplish several steps.
|
||||
|
||||
Configuring:
|
||||
### Configuring
|
||||
|
||||
```console
|
||||
cmake -S . -B build `
|
||||
-G "Visual Studio 17 2022" -A x64 `
|
||||
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake `
|
||||
-DVCPKG_TARGET_TRIPLET=x64-windows `
|
||||
-DCMAKE_BUILD_TYPE=Debug
|
||||
cmake -S . -B build -G "Visual Studio 17 2022" -A x64 -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows -DCMAKE_BUILD_TYPE=Release
|
||||
```
|
||||
|
||||
### Building
|
||||
|
||||
```console
|
||||
cmake --build build --config Release
|
||||
```
|
||||
|
||||
### Static Linking
|
||||
|
||||
For static linking you just need to modify the configure command as follows:
|
||||
|
||||
```console
|
||||
cmake -S . -B build -G "Visual Studio 17 2022" -A x64 -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static -DCMAKE_BUILD_TYPE=Release
|
||||
```
|
||||
|
||||
## Multi-GPU Devices
|
||||
|
Reference in New Issue
Block a user