Skip to content

Commit

Permalink
CI: Remove FreeBSD fork hardcoding (#797)
Browse files Browse the repository at this point in the history
  • Loading branch information
thearchivalone authored Jul 15, 2024
1 parent 813ec22 commit 36bdb0d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,9 +260,9 @@ jobs:
uses: actions/checkout@v2
with:
submodules: recursive
repository: 'bedwardly-down/thunder-bsd'
repository: 'thunder-engine/thunder'
path: 'thunder'
ref: 'fix-moc-freebsd'
ref: 'master'

- name: Build Thunder
uses: vmactions/freebsd-vm@v1
Expand Down
10 changes: 5 additions & 5 deletions engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ set(${PROJECT_NAME}_incPaths
if(UNIX AND NOT APPLE AND NOT LINUX)
set(${PROJECT_NAME}_incPaths
${${PROJECT_NAME}_incPaths}
include_directories(${Qt5Gamepad_INCLUDE_DIRS})
include_directories(${Qt5Gui_INCLUDE_DIRS})
include_directories(${Qt5Svg_INCLUDE_DIRS})
include_directories(${Qt5Widgets_INCLUDE_DIRS})
include_directories(${Qt5Xml_INCLUDE_DIRS})
${Qt5Gamepad_INCLUDE_DIRS}
${Qt5Gui_INCLUDE_DIRS}
${Qt5Svg_INCLUDE_DIRS}
${Qt5Widgets_INCLUDE_DIRS}
${Qt5Xml_INCLUDE_DIRS}
"/usr/local/include"
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions modules/uikit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ set(${PROJECT_NAME}_incPaths
if(UNIX AND NOT APPLE AND NOT LINUX)
set(${PROJECT_NAME}_incPaths
${${PROJECT_NAME}_incPaths}
include_directories(${Qt5Gui_INCLUDE_DIRS})
include_directories(${Qt5Widgets_INCLUDE_DIRS})
${Qt5Gui_INCLUDE_DIRS}
${Qt5Widgets_INCLUDE_DIRS}
"/usr/local/include"
)
endif()
Expand Down

0 comments on commit 36bdb0d

Please sign in to comment.