summary refs log tree commit diff stats
path: root/cmake
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-02-08 00:19:24 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-02-08 00:19:24 -0500
commitbc63fa57ced1c7329f7fdcfd168eaf7e290158bc (patch)
treef3e8fc58c98590efed0c8e192dfdc80fd1e44f11 /cmake
parent003c00be8bda97b20c6aab408b6bfe57563b2b61 (diff)
downloadtherapy-bc63fa57ced1c7329f7fdcfd168eaf7e290158bc.tar.gz
therapy-bc63fa57ced1c7329f7fdcfd168eaf7e290158bc.tar.bz2
therapy-bc63fa57ced1c7329f7fdcfd168eaf7e290158bc.zip
Modernized CMake files
Also removed an unnecessary cmake package helper.
Diffstat (limited to '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