-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructuring build process to isolate projects that depend on complex<>
- Loading branch information
1 parent
11f88e3
commit 99f13b9
Showing
8 changed files
with
42 additions
and
56 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
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,14 +1,9 @@ | ||
file (GLOB SOURCES "./*.cpp") | ||
|
||
# Compiler specific environments | ||
# message(STATUS "CMAKE_CXX_COMPILER ID is -${CMAKE_CXX_COMPILER_ID}-") | ||
|
||
# exclude AppleClang as XCode14 and Xcode15 have std::complex libs that do not support user defined types5 | ||
if(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") | ||
message(STATUS "Ignoring complex tests for AppleClang") | ||
|
||
else() | ||
message(STATUS "Adding complex test for all other non-AppleClang environments") | ||
compile_all("true" "complex" "Applications/Performance/Complex" "${SOURCES}") | ||
|
||
endif() | ||
if(BUILD_COMPLEX) | ||
message(STATUS "Adding complex test for Application environment") | ||
compile_all("true" "complex" "Complex/Applications/Performance" "${SOURCES}") | ||
else(BUILD_COMPLEX) | ||
message(STATUS "Ignoring complex tests for application/performance") | ||
endif(BUILD_COMPLEX) |
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
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
This file was deleted.
Oops, something went wrong.
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