Skip to content

Commit

Permalink
Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Feb 1, 2024
1 parent 6169e49 commit f84f702
Show file tree
Hide file tree
Showing 15 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/VcpkgDeps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
# This will read the dependencies from the vcpkg.json file,
# and the CMake preset from CMakePresets.json
run: |
export VCPKG_ROOT=$VCPKG_INSTALLATION_ROOT
mkdir build
cd build
cmake .. --preset build_vcpkg_default -DCMAKE_BUILD_TYPE=Release
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "build_vcpkg_default",
"description": "Build with vcpkg default settings (opengl3 + sdl and glfw). You need to create a build directory and run from it",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "vcpkg/scripts/buildsystems/vcpkg.cmake",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"HELLOIMGUI_USE_GLFW_OPENGL3": "ON",
"HELLOIMGUI_USE_SDL_OPENGL3": "ON",
"HELLOIMGUI_USE_IMGUI_CMAKE_PACKAGE": "ON"
Expand All @@ -16,7 +16,7 @@
"description": "Build with vcpkg default settings (opengl3 + sdl and glfw). Will build inside build_use_vcpkg_opengl3/",
"binaryDir": "${sourceDir}/build_use_vcpkg_opengl3",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "vcpkg/scripts/buildsystems/vcpkg.cmake",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"HELLOIMGUI_USE_GLFW_OPENGL3": "ON",
"HELLOIMGUI_USE_SDL_OPENGL3": "ON",
"HELLOIMGUI_USE_IMGUI_CMAKE_PACKAGE": "ON"
Expand All @@ -27,7 +27,7 @@
"description": "Build with vcpkg (for metal + sdl and glfw). Will build inside build_use_vcpkg_metal/",
"binaryDir": "${sourceDir}/build_use_vcpkg_metal",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "vcpkg/scripts/buildsystems/vcpkg.cmake",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"HELLOIMGUI_USE_GLFW_METAL": "ON",
"HELLOIMGUI_USE_SDL_METAL": "ON",
"HELLOIMGUI_USE_IMGUI_CMAKE_PACKAGE": "ON"
Expand All @@ -38,7 +38,7 @@
"description": "Build with vcpkg (for vulkan + sdl and glfw). Will build inside build_use_vcpkg_vulkan/",
"binaryDir": "${sourceDir}/build_use_vcpkg_vulkan",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "vcpkg/scripts/buildsystems/vcpkg.cmake",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
"HELLOIMGUI_USE_GLFW_VULKAN": "ON",
"HELLOIMGUI_USE_SDL_VULKAN": "ON",
"HELLOIMGUI_USE_IMGUI_CMAKE_PACKAGE": "ON"
Expand Down

0 comments on commit f84f702

Please sign in to comment.