Skip to content

Commit

Permalink
Add missing LDFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Jun 29, 2024
1 parent 8446e49 commit da2e4de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
run: |
brew install llvm ninja codespell cmake ninja
export PATH=$(brew --prefix llvm@18)/bin:$PATH && echo "PATH=$PATH" >> $GITHUB_ENV
export LDFLAGS=$(brew --prefix llvm@18)/lib/c++:$LDFLAGS && echo "LDFLAGS=$LDFLAGS" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
echo "CC=clang-18" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.28...3.30)
project(modules_benchmark CXX)
project(modules_benchmark LANGUAGES CXX)

find_package(OpenSSL REQUIRED)

Expand Down
2 changes: 1 addition & 1 deletion asio-module/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.28.4...3.30)
project(asio_module)
project(asio_module LANGUAGES CXX)

install(DIRECTORY include DESTINATION .)
install(DIRECTORY module DESTINATION .)
Expand Down

0 comments on commit da2e4de

Please sign in to comment.