Skip to content

Commit

Permalink
attempt to fix ubuntu build on actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ezillinger committed May 5, 2024
1 parent 7d288f7 commit aca46b0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,22 @@ jobs:
cpp_compiler: g++-13
- os: ubuntu-latest
c_compiler: clang-18
cpp_compiler: clang++-18
cpp_compiler: clang++
exclude:
- os: windows-latest
c_compiler: gcc-13
- os: windows-latest
c_compiler: clang-18
# disable windows until we figure out SDL2 install
- os: windows-latest
c_compiler: cl
- os: ubuntu-latest
c_compiler: cl

steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
Expand Down
2 changes: 0 additions & 2 deletions src/APU.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@

#include "APU.h"
#include "imgui.h"

namespace ez {

Expand Down
1 change: 0 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ target_compile_definitions(ezgb PRIVATE IMGUI_USER_CONFIG="../../ImGuiConfig.h")

target_include_directories(ezgb PRIVATE
./libs/imgui
# ./libs/imgui/misc/freetype
)

if(MSVC)
Expand Down
2 changes: 1 addition & 1 deletion src/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "libs/imgui/backends/imgui_impl_opengl3.h"
#include "libs/imgui/backends/imgui_impl_sdl2.h"
#include "libs/imgui/imgui.h"
#include "ThirdParty_ImGui.h"

namespace ez {

Expand Down

0 comments on commit aca46b0

Please sign in to comment.