Find dependency for bsatk in config file. (#21)

* Find dependency for bsatk in config file.
* Bump version to 1.4.1.
This commit is contained in:
Mikaël Capelle
2025-06-02 20:02:07 +02:00
committed by GitHub
parent a048d0f0cc
commit c42a252797
3 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ on:
types: [opened, synchronize, reopened]
env:
VCPKG_BINARY_SOURCES: clear;x-azblob,${{ vars.AZ_BLOB_VCPKG_URL }},${{ secrets.AZ_BLOB_SAS }},readwrite
VCPKG_BINARY_SOURCES: ${{ vars.AZ_BLOB_VCPKG_URL != '' && format('clear;x-azblob,{0},{1},readwrite', vars.AZ_BLOB_VCPKG_URL, secrets.AZ_BLOB_SAS) || '' }}
jobs:
build:
+1 -1
View File
@@ -1,3 +1,3 @@
set(BSATK_MAJOR_VERSION 1)
set(BSATK_MINOR_VERSION 4)
set(BSATK_PATCH_VERSION 0)
set(BSATK_PATCH_VERSION 1)
+7
View File
@@ -1,3 +1,10 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(Boost CONFIG COMPONENTS thread interprocess)
find_dependency(ZLIB)
find_dependency(lz4 CONFIG)
find_dependency(mo2-dds-header CONFIG)
include ( "${CMAKE_CURRENT_LIST_DIR}/mo2-bsatk-targets.cmake" )