-
Notifications
You must be signed in to change notification settings - Fork 709
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
130 additions
and
589 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
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,21 @@ | ||
appveyor-vs: | ||
definitions: | ||
- FFTW3_FORCE_SUPERBUILD: 'ON' | ||
|
||
appveyor-msys: | ||
definitions: | ||
- FFTW3_FORCE_SUPERBUILD: 'ON' | ||
|
||
travis-linux: | ||
definitions: | ||
- FFTW3_FORCE_SUPERBUILD: 'ON' | ||
|
||
travis-osx: | ||
definitions: | ||
- FFTW3_FORCE_SUPERBUILD: 'ON' | ||
|
||
local: | ||
definitions: | ||
- FFTW3_FORCE_SUPERBUILD: 'ON' | ||
env: | ||
- VERBOSE_OUTPUT: 'ON' |
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
8 changes: 6 additions & 2 deletions
8
chapter-08/recipe-04/cxx-example-3.5/external/upstream/eigen3/CMakeLists.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
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,5 +1,25 @@ | ||
appveyor-vs: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
|
||
appveyor-msys: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
|
||
travis-linux: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
|
||
# OpenMP does not work with clang | ||
travis-osx: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
failing_generators: | ||
- 'Unix Makefiles' | ||
- 'Ninja' | ||
|
||
local: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
env: | ||
- VERBOSE_OUTPUT: 'ON' |
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
14 changes: 9 additions & 5 deletions
14
chapter-08/recipe-04/cxx-example/external/upstream/eigen3/CMakeLists.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
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,5 +1,25 @@ | ||
appveyor-vs: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
|
||
appveyor-msys: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
|
||
travis-linux: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
|
||
# OpenMP does not work with clang | ||
travis-osx: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
failing_generators: | ||
- 'Unix Makefiles' | ||
- 'Ninja' | ||
|
||
local: | ||
definitions: | ||
- Eigen3_FORCE_SUPERBUILD: 'ON' | ||
env: | ||
- VERBOSE_OUTPUT: 'ON' |
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,5 +1,5 @@ | ||
# Managing dependencies with a superbuild IV. The HDF5 library | ||
# Managing your project as a superbuild | ||
|
||
Abstract to be written ... | ||
|
||
- [fortran-example](fortran-example/) | ||
- [cxx-example](cxx-example/) |
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
13 changes: 10 additions & 3 deletions
13
.../recipe-06/cxx-example/src/CMakeLists.txt → .../recipe-05/cxx-example/src/CMakeLists.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 |
---|---|---|
@@ -1,13 +1,20 @@ | ||
cmake_minimum_required(VERSION 3.6 FATAL_ERROR) | ||
|
||
project(recipe-06_core LANGUAGES CXX) | ||
project(recipe-05_core | ||
LANGUAGES CXX | ||
) | ||
|
||
set(CMAKE_CXX_STANDARD 11) | ||
set(CMAKE_CXX_EXTENSIONS OFF) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
find_package(message 1 CONFIG REQUIRED) | ||
get_property(_loc TARGET message::message PROPERTY LOCATION) | ||
get_property(_loc TARGET message::message-shared PROPERTY LOCATION) | ||
message(STATUS "Found message: ${_loc} (found version ${message_VERSION})") | ||
|
||
add_executable(use_message use_message.cpp) | ||
|
||
target_link_libraries(use_message | ||
PUBLIC | ||
message::message | ||
message::message-shared | ||
) |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
chapter-08/recipe-05/fortran-example/external/upstream/CMakeLists.txt
This file was deleted.
Oops, something went wrong.
43 changes: 0 additions & 43 deletions
43
chapter-08/recipe-05/fortran-example/external/upstream/hdf5/CMakeLists.txt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.