Compare commits
2 Commits
eb8f8320c2
...
bee4ac5f67
Author | SHA1 | Date |
---|---|---|
Shaun Reed | bee4ac5f67 | |
Shaun Reed | de87d1c40d |
|
@ -6,21 +6,40 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Ubuntu:
|
Build-Qtk:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest]
|
||||||
|
include:
|
||||||
|
- os: ubuntu-latest
|
||||||
|
CMAKE_PARAMS: -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.3.1/gcc_64/
|
||||||
|
- os: macos-latest
|
||||||
|
CMAKE_PARAMS: -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.3.1/gcc_64/ -DASSIMP_NEW_INTERFACE=on
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v2
|
uses: jurplel/install-qt-action@v2
|
||||||
with:
|
with:
|
||||||
version: '6.2.3'
|
version: '6.3.1'
|
||||||
|
|
||||||
- name: Install Assimp
|
- name: Install Assimp Linux
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
sudo apt install libassimp-dev -y
|
sudo apt install libassimp-dev -y
|
||||||
|
|
||||||
|
- name: Install Assimp MacOS
|
||||||
|
if: matrix.os == 'macos-latest'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
brew install assimp
|
||||||
|
|
||||||
- name: Build Qtk
|
- name: Build Qtk
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake .. -DCMAKE_PREFIX_PATH=/home/runner/work/qtk/Qt/6.2.3/gcc_64/ && cmake --build .
|
cmake .. ${{ matrix.CMAKE_PARAMS }} && cmake --build .
|
||||||
|
|
|
@ -27,30 +27,25 @@ if (NOT Qt6_FOUND)
|
||||||
message(FATAL_ERROR "Specify path to Qt6 with `cmake -DCMAKE_PREFIX_PATH=/path/to/Qt/6.x.x/gcc_64 -S /path/to/qtk -B /path/to/qtk/build && cmake --build /path/to/qtk/build -j $(nprocs)`")
|
message(FATAL_ERROR "Specify path to Qt6 with `cmake -DCMAKE_PREFIX_PATH=/path/to/Qt/6.x.x/gcc_64 -S /path/to/qtk -B /path/to/qtk/build && cmake --build /path/to/qtk/build -j $(nprocs)`")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Add our Qt resources.qrc file to our application
|
|
||||||
set(SOURCES app/main.cpp)
|
|
||||||
qt6_add_big_resources(SOURCES resources.qrc)
|
|
||||||
|
|
||||||
add_executable(
|
|
||||||
qtk # Executable name
|
|
||||||
${SOURCES} # Executable source code
|
|
||||||
)
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# External Libraries
|
# External Libraries
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# https://github.com/assimp/assimp/commit/6ac8279977c3a54118551e549d77329497116f66
|
# https://github.com/assimp/assimp/commit/6ac8279977c3a54118551e549d77329497116f66
|
||||||
find_package(assimp REQUIRED)
|
find_package(assimp REQUIRED)
|
||||||
|
option(ASSIMP_NEW_INTERFACE "Use assimp::assimp as target instead of assimp" OFF)
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Custom Libraries
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# Mainwidget
|
|
||||||
include(GenerateExportHeader)
|
include(GenerateExportHeader)
|
||||||
add_library(main-widget STATIC
|
|
||||||
|
################################################################################
|
||||||
|
# Final Application
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add our Qt resources.qrc file to our application
|
||||||
|
set(SOURCES app/main.cpp)
|
||||||
|
qt6_add_big_resources(SOURCES resources.qrc)
|
||||||
|
qt_add_executable(qtk ${SOURCES})
|
||||||
|
|
||||||
|
set(SOURCES
|
||||||
src/mainwidget.cpp src/mainwidget.h
|
src/mainwidget.cpp src/mainwidget.h
|
||||||
src/mainwindow.cpp src/mainwindow.h src/mainwindow.ui
|
src/mainwindow.cpp src/mainwindow.h src/mainwindow.ui
|
||||||
src/input.cpp src/input.h
|
src/input.cpp src/input.h
|
||||||
|
@ -65,29 +60,28 @@ add_library(main-widget STATIC
|
||||||
src/scene.cpp src/scene.h
|
src/scene.cpp src/scene.h
|
||||||
src/resourcemanager.cpp src/resourcemanager.h
|
src/resourcemanager.cpp src/resourcemanager.h
|
||||||
)
|
)
|
||||||
|
qt_add_library(main-widget STATIC ${SOURCES})
|
||||||
|
|
||||||
target_include_directories(main-widget PUBLIC src/)
|
target_include_directories(main-widget PUBLIC src/)
|
||||||
#if(TARGET assimp)
|
if(ASSIMP_NEW_INTERFACE)
|
||||||
target_link_libraries(main-widget PRIVATE assimp)
|
target_link_libraries(main-widget PRIVATE assimp::assimp)
|
||||||
#else()
|
else()
|
||||||
# target_link_libraries(main-widget PRIVATE assimp::assimp)
|
target_link_libraries(main-widget PRIVATE assimp)
|
||||||
#endif()
|
endif()
|
||||||
target_link_libraries(main-widget PUBLIC Qt6::OpenGLWidgets)
|
target_link_libraries(main-widget PUBLIC Qt6::OpenGLWidgets)
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
find_package(OpenGL REQUIRED)
|
find_package(OpenGL REQUIRED)
|
||||||
target_link_libraries(main-widget PUBLIC OpenGL::GL)
|
target_link_libraries(main-widget PUBLIC OpenGL::GL)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Final Application
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# Link qtk executable to main main-widget library
|
|
||||||
target_link_libraries(qtk PUBLIC main-widget)
|
target_link_libraries(qtk PUBLIC main-widget)
|
||||||
|
|
||||||
|
# Link qtk executable to main main-widget library
|
||||||
set_target_properties(qtk PROPERTIES
|
set_target_properties(qtk PROPERTIES
|
||||||
WIN32_EXECUTABLE TRUE
|
WIN32_EXECUTABLE TRUE
|
||||||
MACOSX_BUNDLE TRUE
|
MACOSX_BUNDLE TRUE
|
||||||
|
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
|
||||||
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
|
||||||
)
|
)
|
||||||
|
|
||||||
generate_export_header(main-widget)
|
generate_export_header(main-widget)
|
||||||
|
|
Loading…
Reference in New Issue