Don't build assimp from source in CI
This commit is contained in:
parent
5f6608e1d8
commit
07b2101e16
|
@ -13,61 +13,21 @@ jobs:
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-latest
|
- os: ubuntu-latest
|
||||||
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/;../assimp"
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/"
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/;../assimp" -DASSIMP_NEW_INTERFACE=on
|
cmake: -DCMAKE_PREFIX_PATH="D:/a/qtk/qtk/Qt/6.3.1/mingw81_64/"
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/;../assimp" -DASSIMP_NEW_INTERFACE=on
|
cmake: -DCMAKE_PREFIX_PATH="/home/runner/work/qtk/Qt/6.3.1/gcc_64/"
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Clone Assimp
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
repository: 'assimp/assimp'
|
|
||||||
path: 'assimp'
|
|
||||||
|
|
||||||
- name: Build Assimp
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
pwd
|
|
||||||
ls
|
|
||||||
cmake -S assimp/ -B assimp/build/ -DCMAKE_INSTALL_PREFIX=../assimp && cmake --build assimp/build
|
|
||||||
- name: Install Qt
|
- name: Install Qt
|
||||||
uses: jurplel/install-qt-action@v2
|
uses: jurplel/install-qt-action@v2
|
||||||
with:
|
with:
|
||||||
version: '6.3.1'
|
version: '6.3.1'
|
||||||
|
|
||||||
# - name: Install Assimp Linux
|
|
||||||
# if: matrix.os == 'ubuntu-latest'
|
|
||||||
# shell: bash
|
|
||||||
# run: |
|
|
||||||
# sudo apt install libassimp-dev -y
|
|
||||||
#
|
|
||||||
# - name: Install Assimp MacOS
|
|
||||||
# if: matrix.os == 'macos-latest'
|
|
||||||
# shell: bash
|
|
||||||
# run: |
|
|
||||||
# brew install assimp
|
|
||||||
#
|
|
||||||
# - name: Install Assimp Windows
|
|
||||||
# if: matrix.os == 'windows-latest'
|
|
||||||
# shell: bash
|
|
||||||
# run: |
|
|
||||||
# git clone https://github.com/Microsoft/vcpkg.git
|
|
||||||
# cd vcpkg
|
|
||||||
# ./bootstrap-vcpkg.sh
|
|
||||||
# ./vcpkg integrate install
|
|
||||||
# vcpkg install assimp
|
|
||||||
|
|
||||||
- name: Install Assimp MacOS
|
|
||||||
if: matrix.os == 'macos-latest'
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
brew install assimp
|
|
||||||
|
|
||||||
- name: Build Qtk
|
- name: Build Qtk
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -18,17 +18,18 @@ set(CMAKE_AUTOMOC ON)
|
||||||
set(CMAKE_AUTORCC ON)
|
set(CMAKE_AUTORCC ON)
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
|
add_compile_options(-Wno-error=old-style-definition)
|
||||||
|
|
||||||
# Qtk build options
|
# Qtk build options
|
||||||
option(QTK_DEBUG "Enable debugger" ON)
|
option(QTK_DEBUG "Enable debugger" ON)
|
||||||
option(BUILD_SHARED_LIBS "Build shared library" ON)
|
option(BUILD_SHARED_LIBS "Build shared library" ON)
|
||||||
option(UPDATE_SUBMODULES "Update external project (assimp) git submodule" ON)
|
|
||||||
|
|
||||||
# Qt options
|
# Qt options
|
||||||
set(QT_DIR "$ENV{HOME}/Code/Clones/Qt/6.3.1/gcc_64/" CACHE PATH "Path to Qt6")
|
set(QT_DIR "$ENV{HOME}/Code/Clones/Qt/6.3.1/gcc_64/" CACHE PATH "Path to Qt6")
|
||||||
|
|
||||||
# Options for bringing your own assimp installation; Otherwise not needed
|
# Options for bringing your own assimp installation; Otherwise not needed
|
||||||
set(ASSIMP_DIR "" CACHE PATH "Path to local installation of assimp")
|
# + If assimp is available system-wide we can just set UPDATE_SUBMODULES OFF
|
||||||
|
option(UPDATE_SUBMODULES "Update external project (assimp) git submodule" ON)
|
||||||
option(ASSIMP_NEW_INTERFACE "Use the assimp::assimp interface (WIN / OSX)" OFF)
|
option(ASSIMP_NEW_INTERFACE "Use the assimp::assimp interface (WIN / OSX)" OFF)
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -50,19 +51,8 @@ if (UPDATE_SUBMODULES)
|
||||||
include("${CMAKE_SOURCE_DIR}/cmake/include/git_submodule.cmake")
|
include("${CMAKE_SOURCE_DIR}/cmake/include/git_submodule.cmake")
|
||||||
submodule_update(extern/assimp/assimp/)
|
submodule_update(extern/assimp/assimp/)
|
||||||
add_subdirectory(extern/assimp/assimp)
|
add_subdirectory(extern/assimp/assimp)
|
||||||
else()
|
set(ASSIMP_DIR $"{CMAKE_SOURCE_DIR}extern/assimp/assimp/include/")
|
||||||
if (ASSIMP_DIR)
|
|
||||||
message(STATUS "Using custom ASSIMP_DIR: ${ASSIMP_DIR}")
|
|
||||||
list(APPEND CMAKE_PREFIX_PATH "${ASSIMP_DIR}")
|
|
||||||
endif()
|
endif()
|
||||||
find_package(assimp REQUIRED)
|
|
||||||
if (assimp_FOUND)
|
|
||||||
message(STATUS "Found assimp: ${assimp_DIR}")
|
|
||||||
else()
|
|
||||||
message(FATAL_ERROR "Could not find assimp at: ${CMAKE_PREFIX_PATH}")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -110,11 +100,13 @@ set_target_properties(qtk-widget PROPERTIES
|
||||||
|
|
||||||
target_link_libraries(qtk-widget PUBLIC Qt6::OpenGLWidgets)
|
target_link_libraries(qtk-widget PUBLIC Qt6::OpenGLWidgets)
|
||||||
|
|
||||||
if ((UPDATE_SUBMODULES AND NOT ASSIMP_DIR) OR NOT ASSIMP_NEW_INTERFACE)
|
if (UPDATE_SUBMODULES OR NOT ASSIMP_NEW_INTERFACE)
|
||||||
target_link_libraries(qtk-widget PRIVATE assimp)
|
target_link_libraries(qtk-widget PRIVATE assimp)
|
||||||
elseif(ASSIMP_NEW_INTERFACE)
|
elseif(ASSIMP_NEW_INTERFACE)
|
||||||
target_link_libraries(qtk-widget PRIVATE assimp::assimp)
|
target_link_libraries(qtk-widget PRIVATE assimp::assimp)
|
||||||
endif()
|
endif()
|
||||||
|
message(STATUS "Including dir: ${ASSIMP_DIR}")
|
||||||
|
target_include_directories(qtk-widget PRIVATE "${ASSIMP_DIR}")
|
||||||
|
|
||||||
if(QTK_DEBUG)
|
if(QTK_DEBUG)
|
||||||
target_compile_definitions(qtk-widget PUBLIC QTK_DEBUG)
|
target_compile_definitions(qtk-widget PUBLIC QTK_DEBUG)
|
||||||
|
|
Loading…
Reference in New Issue