Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,6 @@ jobs:
matrix:
cpp_standard: [26]
platform:
- name: macos-13-release
os_type: macos
os_name: macos-13
build_type: Release
- name: macos-13-debug
os_type: macos
os_name: macos-13
build_type: Debug
- name: macos-14-release
os_type: macos
os_name: macos-14
Expand All @@ -32,6 +24,14 @@ jobs:
os_type: macos
os_name: macos-14
build_type: Debug
- name: macos-15-intel-release
os_type: macos
os_name: macos-15-intel
build_type: Release
- name: macos-15-intel-debug
os_type: macos
os_name: macos-15-intel
build_type: Debug
- name: ubuntu-latest-release
os_type: ubuntu
os_name: ubuntu-latest
Expand Down
11 changes: 8 additions & 3 deletions third_party/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# zlib
message(STATUS "Adding zlib as subdirectory")
set(ZLIB_BUILD_SHARED OFF CACHE BOOL "Don't build shared zlib libraries")
# SET(SOME_EXPAT_OPTION OFF CACHE BOOL "Use some expat option")
add_subdirectory(zlib)
set(ZLIB_INCLUDE_DIR "$<TARGET_PROPERTY:zlib,INCLUDE_DIRECTORIES>")
set(LIBZ_INCLUDE_DIR "$<TARGET_PROPERTY:zlib,INCLUDE_DIRECTORIES>")
message(STATUS "The final value of zlib_build_shared: ${ZLIB_BUILD_SHARED}")
set(ZLIB_INCLUDE_DIR "$<TARGET_PROPERTY:zlibstatic,INCLUDE_DIRECTORIES>")
set(LIBZ_INCLUDE_DIR "$<TARGET_PROPERTY:zlibstatic,INCLUDE_DIRECTORIES>")
#For the auto-generated zconf.h:
#set(EXTRA_INCLUDE_DIRS "${EXTRA_INCLUDE_DIRS}" "${CMAKE_CURRENT_BINARY_DIR}/zlib/")
set(EXTRA_INCLUDE_DIRS "${EXTRA_INCLUDE_DIRS}" "$<TARGET_PROPERTY:zlib,INCLUDE_DIRECTORIES>")
set(EXTRA_INCLUDE_DIRS "${EXTRA_INCLUDE_DIRS}" "$<TARGET_PROPERTY:zlibstatic,INCLUDE_DIRECTORIES>")
#message(STATUS "LIBZ_INCLUDE_DIR: ${LIBZ_INCLUDE_DIR}")
message(STATUS "Extra include directories: ${EXTRA_INCLUDE_DIRS}")
set(LIBZ_LIBRARY zlibstatic)
Expand Down Expand Up @@ -42,6 +45,8 @@ add_dependencies(lapack zlibstatic)
#set(CHECK_INCLUDE_DIR "$<TARGET_PROPERTY:check,INCLUDE_DIRECTORIES>")

## poco
set(ENABLE_UTIL OFF "Turn off util functions" FORCE)

message(STATUS "Adding poco as subdirectory")
add_subdirectory(poco)

Expand Down
2 changes: 1 addition & 1 deletion third_party/libSEDML
Submodule libSEDML updated 1 files
+1 −1 CMakeLists.txt
2 changes: 1 addition & 1 deletion third_party/poco
Submodule poco updated 4626 files