2022-02-20 17:55:26 +01:00
|
|
|
cmake_minimum_required(VERSION 3.16.0)
|
|
|
|
|
|
|
|
include(FetchContent)
|
|
|
|
|
2022-04-24 09:09:56 +02:00
|
|
|
set(THIRD_PARTY_PATH "${CMAKE_SOURCE_DIR}/ThirdParty/")
|
|
|
|
|
2022-05-06 14:51:56 +02:00
|
|
|
FetchContent_Populate(
|
|
|
|
QArchive
|
|
|
|
GIT_REPOSITORY https://github.com/antony-jr/QArchive.git
|
2023-02-16 13:06:50 +01:00
|
|
|
GIT_TAG e587f30507c0e6d92f79a2dc1a6aa7ebb1f8e679
|
2022-05-06 14:51:56 +02:00
|
|
|
# Workaround because:
|
|
|
|
# 1. QtCreator cannot handle QML_ELEMENT stuff when it is in bin folder
|
|
|
|
# https://bugreports.qt.io/browse/QTCREATORBUG-27083
|
|
|
|
SOURCE_DIR ${THIRD_PARTY_PATH}/QArchive
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-04-24 09:09:56 +02:00
|
|
|
FetchContent_Populate(
|
2022-02-20 17:55:26 +01:00
|
|
|
qml-plausible
|
|
|
|
GIT_REPOSITORY https://gitlab.com/kelteseth/qml-plausible.git
|
2023-02-16 13:06:50 +01:00
|
|
|
GIT_TAG 5069ba3bf25663ea06be8b94c398d6c61058d4d5
|
2022-04-24 09:09:56 +02:00
|
|
|
# Workaround because:
|
|
|
|
# 1. QtCreator cannot handle QML_ELEMENT stuff when it is in bin folder
|
|
|
|
# https://bugreports.qt.io/browse/QTCREATORBUG-27083
|
|
|
|
SOURCE_DIR ${THIRD_PARTY_PATH}/qml-plausible
|
2022-02-20 17:55:26 +01:00
|
|
|
)
|