summary refs log tree commit diff stats
path: root/cmake/FindMxml.cmake
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-02-12 16:53:30 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-02-12 16:53:30 -0500
commit3df19e45e737a1b9395a9a258e3263e444ebedd7 (patch)
tree896adccf14054cf54291c1d5bc7825a8888a351b /cmake/FindMxml.cmake
parent5cc80ec58ea5bd66456f6f5286fa5f26d3fe702b (diff)
parentbc63fa57ced1c7329f7fdcfd168eaf7e290158bc (diff)
downloadtherapy-3df19e45e737a1b9395a9a258e3263e444ebedd7.tar.gz
therapy-3df19e45e737a1b9395a9a258e3263e444ebedd7.tar.bz2
therapy-3df19e45e737a1b9395a9a258e3263e444ebedd7.zip
Merge branch 'master' into es-rewrite
Diffstat (limited to 'cmake/FindMxml.cmake')
-rw-r--r--cmake/FindMxml.cmake31
1 files changed, 0 insertions, 31 deletions
diff --git a/cmake/FindMxml.cmake b/cmake/FindMxml.cmake deleted file mode 100644 index 49daa4f..0000000 --- a/cmake/FindMxml.cmake +++ /dev/null
@@ -1,31 +0,0 @@
1# - Try to find Motif (or lesstif)
2# Once done this will define:
3# MXML_FOUND - system has MXML
4# MXML_INCLUDE_DIR - incude paths to use Motif
5# MXML_LIBRARIES - Link these to use Motif
6
7SET(MXML_FOUND 0)
8
9IF(UNIX)
10 FIND_PATH(MXML_INCLUDE_DIR
11 mxml.h
12 /usr/include
13 )
14
15 FIND_LIBRARY(MXML_LIBRARIES
16 mxml
17 /usr/lib
18 )
19
20ENDIF(UNIX)
21
22# handle the QUIETLY and REQUIRED arguments and set MXML_FOUND to TRUE if
23# all listed variables are TRUE
24INCLUDE(FindPackageHandleStandardArgs)
25FIND_PACKAGE_HANDLE_STANDARD_ARGS(MXML DEFAULT_MSG MXML_LIBRARIES MXML_INCLUDE_DIR)
26
27
28MARK_AS_ADVANCED(
29 MXML_INCLUDE_DIR
30 MXML_LIBRARIES
31) \ No newline at end of file