-
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.
link to ecp components via cmake config targets
- Loading branch information
Showing
12 changed files
with
139 additions
and
314 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
# - Try to find liblwgrp | ||
# Once done this will define | ||
# LWGRP_FOUND - System has liblwgrp | ||
# LWGRP_INCLUDE_DIRS - The liblwgrp include directories | ||
# LWGRP_LIBRARIES - The libraries needed to use liblwgrp | ||
|
||
FIND_PATH(WITH_LWGRP_PREFIX | ||
NAMES include/lwgrp.h | ||
) | ||
|
||
FIND_LIBRARY(LWGRP_LIBRARIES | ||
NAMES lwgrp | ||
HINTS ${WITH_LWGRP_PREFIX}/lib | ||
) | ||
|
||
FIND_PATH(LWGRP_INCLUDE_DIRS | ||
NAMES lwgrp.h | ||
HINTS ${WITH_LWGRP_PREFIX}/include | ||
) | ||
|
||
INCLUDE(FindPackageHandleStandardArgs) | ||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LWGRP DEFAULT_MSG | ||
LWGRP_LIBRARIES | ||
LWGRP_INCLUDE_DIRS | ||
) | ||
|
||
# Hide these vars from ccmake GUI | ||
MARK_AS_ADVANCED( | ||
LWGRP_LIBRARIES | ||
LWGRP_INCLUDE_DIRS | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.