-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not pass compiler executable for AppleClang if it is the default (#…
…592) * Do not pass compiler executable for AppleClang if it is the default
- Loading branch information
Showing
5 changed files
with
48 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,9 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
python-version: "3.10" | ||
- name: Install autotools on macOS | ||
run: brew install automake | ||
if: ${{ matrix.os == 'macos-13' }} | ||
- name: Install Conan | ||
run: pip install conan pytest && conan --version | ||
- name: Setup CMake and Ninja | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
cmake_minimum_required(VERSION 3.24) | ||
project(MyApp CXX) | ||
|
||
set(CMAKE_CXX_STANDARD 17) | ||
|
||
find_package(helloautotools REQUIRED) | ||
add_executable(app main.cpp) | ||
target_link_libraries(app helloautotools::helloautotools) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[requires] | ||
helloautotools/0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters