-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from pedrolcl/devel
fix for issue #42: new cmake option for PIC
- Loading branch information
Showing
3 changed files
with
9 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# The exported targets as aliases, to use FluidLite in another project | ||
# for instance as a git submodule | ||
add_library(fluidlite::fluidlite ALIAS fluidlite) | ||
add_library(fluidlite::fluidlite-static ALIAS fluidlite-static) | ||
if (TARGET fluidlite) | ||
add_library(fluidlite::fluidlite ALIAS fluidlite) | ||
endif() | ||
if (TARGET fluidlite-static) | ||
add_library(fluidlite::fluidlite-static ALIAS fluidlite-static) | ||
endif() |