Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main Repositories
otb
Commits
6cb7dc71
Commit
6cb7dc71
authored
7 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Patches
Plain Diff
BUG: mantis #1397
parent
33000a88
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMake/FindLibKML.cmake
+23
-43
23 additions, 43 deletions
CMake/FindLibKML.cmake
with
23 additions
and
43 deletions
CMake/FindLibKML.cmake
+
23
−
43
View file @
6cb7dc71
...
...
@@ -31,55 +31,35 @@ if( LIBKML_INCLUDE_DIR )
set
(
LibKML_FIND_QUIETLY TRUE
)
endif
()
find_path
(
LIBKML_INCLUDE_DIR kml/dom.h
)
find_path
(
LIBKML_INCLUDE_DIR kml/dom.h
)
find_library
(
LIBKML_BASE_LIBRARY NAMES kmlbase
)
find_library
(
LIBKML_DOM_LIBRARY NAMES kmldom
)
find_library
(
LIBKML_ENGINE_LIBRARY NAMES kmlengine
)
find_library
(
LIBKML_BASE_LIBRARY
NAMES kmlbase
)
# TODO : add HINTS derived from path of LIBKML_BASE_LIBRARY
find_library
(
LIBKML_CONVENIENCE_LIBRARY
NAMES kmlconvenience
)
find_library
(
LIBKML_DOM_LIBRARY
NAMES kmldom
)
find_library
(
LIBKML_ENGINE_LIBRARY
NAMES kmlengine
)
find_library
(
LIBKML_REGIONATOR_LIBRARY
NAMES kmlregionator
)
find_library
(
LIBKML_XSD_LIBRARY
NAMES kmlxsd
)
find_library
(
LIBKML_MINIZIP_LIBRARY
NAMES minizip
)
mark_as_advanced
(
LIBKML_INCLUDE_DIR
LIBKML_BASE_LIBRARY
LIBKML_CONVENIENCE_LIBRARY
LIBKML_DOM_LIBRARY
LIBKML_ENGINE_LIBRARY
LIBKML_REGIONATOR_LIBRARY
LIBKML_XSD_LIBRARY
LIBKML_MINIZIP_LIBRARY
)
mark_as_advanced
(
LIBKML_INCLUDE_DIR
LIBKML_BASE_LIBRARY
LIBKML_DOM_LIBRARY
LIBKML_ENGINE_LIBRARY
)
# handle the QUIETLY and REQUIRED arguments and set LIBKML_FOUND to TRUE if
# all listed variables are TRUE
include
(
FindPackageHandleStandardArgs
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
LibKML DEFAULT_MSG
LIBKML_BASE_LIBRARY
LIBKML_CONVENIENCE_LIBRARY
LIBKML_DOM_LIBRARY
LIBKML_ENGINE_LIBRARY
LIBKML_REGIONATOR_LIBRARY
LIBKML_XSD_LIBRARY
LIBKML_MINIZIP_LIBRARY
LIBKML_INCLUDE_DIR
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
LibKML
DEFAULT_MSG
LIBKML_INCLUDE_DIR
LIBKML_BASE_LIBRARY
LIBKML_DOM_LIBRARY
LIBKML_ENGINE_LIBRARY
)
if
(
LIBKML_FOUND
)
set
(
LIBKML_INCLUDE_DIRS
${
LIBKML_INCLUDE_DIR
}
)
set
(
LIBKML_LIBRARIES
${
LIBKML_BASE_LIBRARY
}
${
LIBKML_CONVENIENCE_LIBRARY
}
${
LIBKML_DOM_LIBRARY
}
${
LIBKML_ENGINE_LIBRARY
}
${
LIBKML_REGIONATOR_LIBRARY
}
${
LIBKML_XSD_LIBRARY
}
${
LIBKML_MINIZIP_LIBRARY
}
)
set
(
LIBKML_LIBRARIES
${
LIBKML_BASE_LIBRARY
}
${
LIBKML_DOM_LIBRARY
}
${
LIBKML_ENGINE_LIBRARY
}
)
endif
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment