diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 965c962..242777f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: run: | mkdir -p build cd build - cmake .. -DCMAKE_BUILD_TYPE=Debug + cmake .. -DCMAKE_BUILD_TYPE=Release - name: Build C++ project run: | diff --git a/.gitignore b/.gitignore index bc4f62e..7844ebc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # Build artifacts /build/ **/target/ +_codeql_build_dir/ +_codeql_detected_source_root # CMake CMakeFiles/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 118ca56..2017f31 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,6 +3,7 @@ project(starworld LANGUAGES CXX) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) option(USE_OVERTE_SDK "Link against Overte SDK if available" OFF) option(USE_STARDUST_SDK "Link against StardustXR SDK if available" OFF) diff --git a/src/OverteClient.hpp b/src/OverteClient.hpp index 4da2ddc..cc8811c 100644 --- a/src/OverteClient.hpp +++ b/src/OverteClient.hpp @@ -1,6 +1,7 @@ // OverteClient.hpp #pragma once +#include #include #include #include diff --git a/third_party/asteroids b/third_party/asteroids deleted file mode 160000 index 38ec7d0..0000000 --- a/third_party/asteroids +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 38ec7d047076626396f6d5cde56ee8ff19eda8ee