-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for specifying conan build profile
- Loading branch information
1 parent
7d81cdf
commit 2f5a2c3
Showing
5 changed files
with
20 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
Add support for both cmake_layout and non cmake_layout when generating toolchain file. | ||
Added support for both cmake_layout and non cmake_layout when generating toolchain file. | ||
Added support for specifying conan build profile |
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
File renamed without changes.
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
11 changes: 11 additions & 0 deletions
11
tests/no_default_profile_installed/lib/ubuntu-22.04-conanprofile.txt
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,11 @@ | ||
[settings] | ||
os=Linux | ||
arch=x86_64 | ||
build_type=RelWithDebInfo | ||
compiler=clang | ||
compiler.version=15 | ||
compiler.cppstd=20 | ||
compiler.libcxx=libstdc++11 | ||
|
||
[conf] | ||
tools.build:compiler_executables={'c': 'clang-15', 'cpp': 'clang++-15'} |