-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake: export targets in config files
- Loading branch information
1 parent
9377370
commit f39b4e7
Showing
7 changed files
with
100 additions
and
62 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
include(CMakeFindDependencyMacro) | ||
find_dependency(Notcurses) | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/Notcurses++Targets.cmake") | ||
|
||
set(Notcurses_INCLUDE_DIRS "${CMAKE_CURRENT_LIST_DIR}/../../../include") | ||
set(Notcurses_LIBRARY_DIRS "") | ||
set(Notcurses_LIBRARIES Notcurses::Notcurses++) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
include(CMakeFindDependencyMacro) | ||
find_dependency(NotcursesCore) | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/NotcursesTargets.cmake") | ||
|
||
set(Notcurses_INCLUDE_DIRS "${CMAKE_CURRENT_LIST_DIR}/../../../include") | ||
set(Notcurses_LIBRARY_DIRS "") | ||
set(Notcurses_LIBRARIES Notcurses::Notcurses) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
include(CMakeFindDependencyMacro) | ||
find_dependency(Threads) | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/NotcursesCoreTargets.cmake") | ||
|
||
set(NotcursesCore_INCLUDE_DIRS "") | ||
set(NotcursesCore_LIBRARY_DIRS "") | ||
set(NotcursesCore_LIBRARIES Notcurses::NotcursesCore) |
This file was deleted.
Oops, something went wrong.