-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:robert-burger/libethercat
- Loading branch information
Showing
3 changed files
with
67 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# =================================================================================== | ||
# @PROJECT_NAME@ CMake configuration file | ||
# | ||
# ** File generated automatically, do not modify ** | ||
# | ||
# Usage from an external project: | ||
# In your CMakeLists.txt, add these lines: | ||
# | ||
# FIND_PACKAGE(@PROJECT_NAME@ REQUIRED ) | ||
# TARGET_LINK_LIBRARIES(MY_TARGET_NAME ${@PROJECT_NAME@_LIBS}) | ||
# | ||
# This file will define the following variables: | ||
# - @PROJECT_NAME@_LIBS : The list of libraries to links against. | ||
# - @PROJECT_NAME@_LIB_DIR : The directory where lib files are. Calling LINK_DIRECTORIES | ||
# with this path is NOT needed. | ||
# - @PROJECT_NAME@_VERSION : The version of this PROJECT_NAME build. Example: "1.2.0" | ||
# - @PROJECT_NAME@_VERSION_MAJOR : Major version part of VERSION. Example: "1" | ||
# - @PROJECT_NAME@_VERSION_MINOR : Minor version part of VERSION. Example: "2" | ||
# - @PROJECT_NAME@_VERSION_PATCH : Patch version part of VERSION. Example: "0" | ||
# | ||
# =================================================================================== | ||
@PACKAGE_INIT@ | ||
INCLUDE_DIRECTORIES("@PACKAGE_INSTALL_DIR@/include") | ||
SET(@PROJECT_NAME@_INCLUDE_DIRS "@PACKAGE_INSTALL_DIR@/include") | ||
|
||
LINK_DIRECTORIES("@PACKAGE_INSTALL_DIR@/lib") | ||
SET(@PROJECT_NAME@_LIB_DIR "@PACKAGE_INSTALL_DIR@/lib") | ||
|
||
SET(@PROJECT_NAME@_LIBS @REQUIRED_LIBRARIES@ @ETHERCAT_LIB_NAME@@PROJECT_DLLVERSION@) | ||
SET(@PROJECT_NAME@_FOUND YES) | ||
SET(@PROJECT_NAME@_VERSION @PROJECT_VERSION@) | ||
SET(@PROJECT_NAME@_VERSION_MAJOR @PROJECT_VERSION_MAJOR@) | ||
SET(@PROJECT_NAME@_VERSION_MINOR @PROJECT_VERSION_MINOR@) | ||
SET(@PROJECT_NAME@_VERSION_PATCH @PROJECT_VERSION_PATCH@) |