mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-06 06:26:13 +00:00
Fixing the CI
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
|||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake ..
|
cmake .. -DCMAKE_BUILD_TYPE=Debug
|
||||||
cmake --build .
|
cmake --build .
|
||||||
- name: CheckBinaryName
|
- name: CheckBinaryName
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
@@ -3,7 +3,9 @@ project(bomberman)
|
|||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 20)
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
|
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Wextra -Wshadow -W -g")
|
if (CMAKE_COMPILER_IS_GNUCC)
|
||||||
|
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Wextra -Wshadow -W -g")
|
||||||
|
endif()
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O2")
|
set(CMAKE_CXX_FLAGS_RELEASE "-O2")
|
||||||
|
|
||||||
include_directories(lib/Ray/sources)
|
include_directories(lib/Ray/sources)
|
||||||
|
|||||||
Reference in New Issue
Block a user