-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport from master onto release branch
- Loading branch information
Showing
48 changed files
with
747 additions
and
189 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# back-up | ||
*~ | ||
*.bak | ||
|
||
# files when there are conflicts | ||
*.orig | ||
|
||
# qtcreator files | ||
CMakeLists.txt.user* | ||
|
||
# kdevelop files | ||
*.kdev* |
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
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,40 @@ | ||
# | ||
# Copyright (c) 2006-2011 Mathieu Malaterre <[email protected]> | ||
# | ||
# Redistribution and use is allowed according to the terms of the New | ||
# BSD license. | ||
# For details see the accompanying COPYING-CMAKE-SCRIPTS file. | ||
# | ||
|
||
FIND_PATH(CHARLS_INCLUDE_DIR CharLS/interface.h | ||
/usr/local/include | ||
/usr/include | ||
) | ||
|
||
FIND_LIBRARY(CHARLS_LIBRARY | ||
NAMES CharLS | ||
PATHS /usr/lib /usr/local/lib | ||
) | ||
|
||
IF (CHARLS_LIBRARY AND CHARLS_INCLUDE_DIR) | ||
SET(CHARLS_LIBRARIES ${CHARLS_LIBRARY}) | ||
SET(CHARLS_INCLUDE_DIRS ${CHARLS_INCLUDE_DIR}) | ||
SET(CHARLS_FOUND "YES") | ||
ELSE (CHARLS_LIBRARY AND CHARLS_INCLUDE_DIR) | ||
SET(CHARLS_FOUND "NO") | ||
ENDIF (CHARLS_LIBRARY AND CHARLS_INCLUDE_DIR) | ||
|
||
IF (CHARLS_FOUND) | ||
IF (NOT CHARLS_FIND_QUIETLY) | ||
MESSAGE(STATUS "Found CHARLS: ${CHARLS_LIBRARIES}") | ||
ENDIF (NOT CHARLS_FIND_QUIETLY) | ||
ELSE (CHARLS_FOUND) | ||
IF (CHARLS_FIND_REQUIRED) | ||
MESSAGE(FATAL_ERROR "Could not find CHARLS library") | ||
ENDIF (CHARLS_FIND_REQUIRED) | ||
ENDIF (CHARLS_FOUND) | ||
|
||
MARK_AS_ADVANCED( | ||
CHARLS_LIBRARIES | ||
CHARLS_INCLUDE_DIR | ||
) |
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
Oops, something went wrong.