File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.16 FATAL_ERROR )
2
2
3
- project (JoltRaylibHelloWorld
4
- VERSION 0.0.1
5
- DESCRIPTION "Jolt Physics raylib: trying Jolt C++ game development physics library with raylib in a 3D hello world bouncing sphere example."
6
- LANGUAGES C CXX )
3
+ project (
4
+ JoltRaylibHelloWorld
5
+ VERSION 0.0.1
6
+ DESCRIPTION
7
+ "Jolt Physics raylib: trying Jolt C++ game development physics library with raylib in a 3D hello world bouncing sphere example."
8
+ LANGUAGES C CXX )
7
9
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR} /bin )
8
10
set (CMAKE_EXPORT_COMPILE_COMMANDS True )
9
11
add_library (jolt_raylib_hello_world_compiler_flags INTERFACE )
@@ -98,7 +100,7 @@ set(CMAKE_EXE_LINKER_FLAGS_DISTRIBUTION "${CMAKE_EXE_LINKER_FLAGS_RELEASE}")
98
100
99
101
# Enable link time optimization in Release and Distribution mode if requested
100
102
# and available
101
- SET_INTERPROCEDURAL_OPTIMIZATION ()
103
+ set_interprocedural_optimization ()
102
104
103
105
# Compile the HelloWorld application
104
106
add_executable (JoltRaylibHelloWorld src/main.cpp src/game/game.cpp
You can’t perform that action at this time.
0 commit comments