Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unexpected recursions in geometry splitting #13

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:

- name: Test project
run: cd build && ctest --rerun-failed --output-on-failure
continue-on-error: true # remove once tests are expected to be stable
env:
QT_QPA_PLATFORM: offscreen

Expand Down Expand Up @@ -94,7 +93,6 @@ jobs:

- name: Test project
run: cd build && ctest --rerun-failed --output-on-failure
continue-on-error: true # remove once tests are expected to be stable
env:
QT_QPA_PLATFORM: offscreen

Expand Down Expand Up @@ -140,4 +138,3 @@ jobs:

- name: Test project
run: cd build && ctest --rerun-failed --output-on-failure
continue-on-error: true # remove once tests are expected to be stable
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ add_compile_definitions(
add_compile_options(
$<$<COMPILE_LANGUAGE:CXX>:-Werror=missing-declarations>
-Wall -Wextra
-Werror=parentheses
-Werror=sign-compare
-Werror=switch
-Werror=unused
Expand All @@ -52,6 +53,7 @@ include(QtCSGBackports)
add_subdirectory(qtcsg)
add_subdirectory(qt3dcsg)

add_subdirectory(assets)
add_subdirectory(demo)
add_subdirectory(tests)

Expand Down
1 change: 1 addition & 0 deletions assets/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
qt_add_library(QtCSGAssets OBJECT qtcsgassets.qrc)
Loading
Loading