-
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
8 changed files
with
30 additions
and
4 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,5 +1,9 @@ | ||
# Installing your project | ||
|
||
Abstract to be written ... | ||
This recipe demonstrates how to install files, libraries, and executables. | ||
|
||
In this recipe, we introduce a small example project which is used in the | ||
remaining recipes of this chapter. | ||
|
||
|
||
- [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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
This recipe demonstrates how to install files, libraries, and executables. | ||
|
||
In this recipe, we introduce a small example project which is used in the | ||
remaining recipes of this chapter. |
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,10 @@ | ||
# Generating export headers | ||
|
||
Abstract to be written ... | ||
In this recipe we wish to: | ||
- Build both a shared and static library from the same set of source files. | ||
- Ensure that only the visibility of symbols in the shared library is properly delimited. | ||
|
||
To demonstrate this, we revisit [Recipe 3 in Chapter 1](../../chapter-01/recipe-03). | ||
|
||
|
||
- [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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
In this recipe we wish to: | ||
- Build both a shared and static library from the same set of source files. | ||
- Ensure that only the visibility of symbols in the shared library is properly delimited. | ||
|
||
To demonstrate this, we revisit [Recipe 3 in Chapter 1](../../chapter-01/recipe-03). |
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,7 @@ | ||
# Exporting your targets | ||
|
||
Abstract to be written ... | ||
This recipe shows how CMake can let us export our targets so | ||
that other projects using CMake can pick them up easily. | ||
|
||
|
||
- [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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This recipe shows how CMake can let us export our targets so | ||
that other projects using CMake can pick them up easily. |
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,7 @@ | ||
# Installing a superbuild project | ||
|
||
Abstract to be written ... | ||
This recipe shows how to install a superbuild which depends on a library which | ||
may or may not be available on the system. | ||
|
||
|
||
- [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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This recipe shows how to install a superbuild which depends on a library which | ||
may or may not be available on the system. |