Skip to content

Commit

Permalink
More whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
mickem committed Feb 10, 2025
1 parent 12645a5 commit 92d34f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
- name: CMake (installer_lib)
working-directory: tmp/installer_lib
run: |
cmake ../../installer_lib -T v141 -G "Visual Studio 17" -A ${{ steps.setup.outputs.platform }} -DBOOST_ROOT=${{ steps.paths.outputs.static_boost_root }} -DBOOST_LIBRARYDIR=${{ steps.paths.outputs.static_boost_librarydir }} -D BUILD_VERSION=${{ inputs.version }}
cmake ../../installer_lib -T v141 -G "Visual Studio 17" -A ${{ steps.setup.outputs.platform }} -DBOOST_ROOT=${{ steps.paths.outputs.static_boost_root }} -DBOOST_LIBRARYDIR=${{ steps.paths.outputs.static_boost_librarydir }} -DOPENSSL_ROOT_DIR=${{ steps.openssl.outputs.path_unix }} -DBUILD_VERSION=${{ inputs.version }}
- name: Build installer_lib
working-directory: tmp/installer_lib
Expand Down
6 changes: 6 additions & 0 deletions installer_lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ else(Boost_FOUND)
endif(Boost_FOUND)
SET(OPENSSL_USE_STATIC_LIBS TRUE)
find_package(OpenSSL)
if(OPENSSL_FOUND)
message(
STATUS " - OpenSSL found in: ${OPENSSL_INCLUDE_DIR} / ${OPENSSL_LIBRARIES}")
else(OPENSSL_FOUND)
message(FATAL_ERROR " ! OpenSSL not found TODO=${OPENSSL_INCLUDE_DIR}")
endif(OPENSSL_FOUND)

include_directories(${NSCP_INCLUDEDIR})
include_directories(${Boost_INCLUDE_DIRS})
Expand Down

0 comments on commit 92d34f7

Please sign in to comment.