Skip to content

Commit 886487f

Browse files
committed
style: 🛁 linting
1 parent dfc1e49 commit 886487f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

CMakeLists.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
22

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)
79
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
810
set(CMAKE_EXPORT_COMPILE_COMMANDS True)
911
add_library(jolt_raylib_hello_world_compiler_flags INTERFACE)
@@ -98,7 +100,7 @@ set(CMAKE_EXE_LINKER_FLAGS_DISTRIBUTION "${CMAKE_EXE_LINKER_FLAGS_RELEASE}")
98100

99101
# Enable link time optimization in Release and Distribution mode if requested
100102
# and available
101-
SET_INTERPROCEDURAL_OPTIMIZATION()
103+
set_interprocedural_optimization()
102104

103105
# Compile the HelloWorld application
104106
add_executable(JoltRaylibHelloWorld src/main.cpp src/game/game.cpp

0 commit comments

Comments
 (0)