diff options
author | Mario Liebisch <mario.liebisch@gmail.com> | 2014-12-15 21:35:51 +0100 |
---|---|---|
committer | Mario Liebisch <mario.liebisch@gmail.com> | 2014-12-15 21:44:12 +0100 |
commit | e3f4198697c850f4b37ad618882c32001c05bf67 (patch) | |
tree | 371e2a3cfddf26bf1cc749ea6587ec805e929cdb /cmake | |
parent | b12246386b724c08d5d67322bb9138d1e79d12ca (diff) |
Added CMake Find_Package script and debug suffix
* This allows easy inclusion of EntityX in CMake projects using
`Find_Package(EntityX)`.
* Also debug versions now use the `-d` suffix, no longer overwriting
release builds (e.g. `entityx-d.lib` rather than `entityx.lib`).
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindEntityX.cmake | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/cmake/FindEntityX.cmake b/cmake/FindEntityX.cmake new file mode 100644 index 0000000..cf19aed --- /dev/null +++ b/cmake/FindEntityX.cmake @@ -0,0 +1,28 @@ +# Look for a version of EntityX on the local machine +# +# By default, this will look in all common places. If EntityX is built or +# installed in a custom location, you're able to either modify the +# CMakeCache.txt file yourself or simply pass the path to CMake using either the +# environment variable `ENTITYX_ROOT` or the CMake define with the same name. + +set(ENTITYX_PATHS ${ENTITYX_ROOT} + $ENV{ENTITYX_ROOT} + ~/Library/Frameworks + /Library/Frameworks + /usr/local + /usr + /sw + /opt/local + /opt/csw + /opt) + +find_path(ENTITYX_INCLUDE_DIR entityx/entityx.h PATH_SUFFIXES include PATHS ${ENTITYX_PATHS}) +find_library(ENTITYX_LIBRARY NAMES entityx PATH_SUFFIXES lib PATHS ${ENTITYX_PATHS}) +find_library(ENTITYX_LIBRARY_DEBUG NAMES entityx-d PATH_SUFFIXES lib PATHS ${ENTITYX_PATHS}) +mark_as_advanced(ENTITYX_INCLUDE_DIR ENTITYX_LIBRARY) + +if(ENTITYX_INCLUDE_DIR AND ENTITYX_LIBRARY) + set(ENTITYX_FOUND TRUE) +else() + set(ENTITYX_FOUND FALSE) +endif() |