Skip to content

Commit

Permalink
temp: start moving things around
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotonen committed Oct 5, 2024
1 parent 9a3e4c2 commit 93a2559
Show file tree
Hide file tree
Showing 78 changed files with 3,733 additions and 3,398 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-smoketest-debian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Build Prep Anura
run: |
cmake . \
cmake buildsystem/linux-dynamic \
-D CMAKE_CXX_COMPILER="${{ matrix.compiler }}" \
-D CMAKE_BUILD_TYPE="${{ matrix.build-type }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-smoketest-fedora.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

- name: Build Prep Anura
run: |
cmake . \
cmake buildsystem/linux-dynamic \
-D CMAKE_CXX_COMPILER="${{ matrix.compiler }}" \
-D CMAKE_BUILD_TYPE="${{ matrix.build-type }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-smoketest-opensuse-leap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Build Prep Anura
run: |
cmake . \
cmake buildsystem/linux-dynamic \
-D CMAKE_CXX_COMPILER="${{ matrix.compiler }}" \
-D CMAKE_BUILD_TYPE="${{ matrix.build-type }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-smoketest-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:

- name: Build Prep Anura
run: |
cmake . \
cmake buildsystem/linux-dynamic \
-D CMAKE_CXX_COMPILER="${{ matrix.compiler }}" \
-D CMAKE_BUILD_TYPE="${{ matrix.build-type }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-unit-tests-dynamic-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- name: Build Prep Anura
run: |
cmake . \
cmake buildsystem/linux-dynamic \
-D CMAKE_CXX_COMPILER='clang++' \
-D CMAKE_BUILD_TYPE="${{ matrix.build-type }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-unit-tests-static-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Build Prep Anura
run: |
cmake . \
cmake buildsystem/linux-steam \
-D CMAKE_CXX_COMPILER="${{ matrix.compiler }}" \
-D CMAKE_BUILD_TYPE="${{ matrix.build-type }}" \
-D CMAKE_LINK_TYPE=Static
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,31 @@
# XXX - The leading spaces in this file are meaningful for string concatenation!

set_property(
SOURCE "${CMAKE_SOURCE_DIR}/src/cairo.cpp"
SOURCE "${CMAKE_BINARY_DIR}/src/cairo.cpp"
APPEND_STRING
PROPERTY COMPILE_FLAGS " -Wno-c++11-narrowing"
)

set_property(
SOURCE "${CMAKE_SOURCE_DIR}/src/custom_object.cpp"
SOURCE "${CMAKE_BINARY_DIR}/src/custom_object.cpp"
APPEND_STRING
PROPERTY COMPILE_FLAGS " -Wno-c++11-narrowing"
)

set_property(
SOURCE "${CMAKE_SOURCE_DIR}/src/kre/FontSDL.cpp"
SOURCE "${CMAKE_BINARY_DIR}/src/kre/FontSDL.cpp"
APPEND_STRING
PROPERTY COMPILE_FLAGS " -Wno-c++11-narrowing"
)

set_property(
SOURCE "${CMAKE_SOURCE_DIR}/src/kre/SurfaceSDL.cpp"
SOURCE "${CMAKE_BINARY_DIR}/src/kre/SurfaceSDL.cpp"
APPEND_STRING
PROPERTY COMPILE_FLAGS " -Wno-c++11-narrowing"
)

set_property(
SOURCE "${CMAKE_SOURCE_DIR}/src/md5.cpp"
SOURCE "${CMAKE_BINARY_DIR}/src/md5.cpp"
APPEND_STRING
PROPERTY COMPILE_FLAGS " -Wno-c++11-narrowing"
)
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# XXX - The leading spaces in this file are meaningful for string concatenation!

set_property(
SOURCE "${CMAKE_SOURCE_DIR}/src/cairo.cpp"
SOURCE "${CMAKE_BINARY_DIR}/src/cairo.cpp"
APPEND_STRING
PROPERTY COMPILE_FLAGS " -Wno-unused-result"
)
Loading

0 comments on commit 93a2559

Please sign in to comment.