summaryrefslogtreecommitdiffstats
path: root/Modules/FindMotif.cmake
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-09-08 13:59:01 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2005-09-08 13:59:01 (GMT)
commitfcafddb31885a697fc1d9aca316e10db79fe19f7 (patch)
treebcf8627b9e88eb8f8a5c9d355cb162379585d063 /Modules/FindMotif.cmake
parentb64b020f09a0f126842879c0e08a2cc8449b7b38 (diff)
downloadCMake-fcafddb31885a697fc1d9aca316e10db79fe19f7.zip
CMake-fcafddb31885a697fc1d9aca316e10db79fe19f7.tar.gz
CMake-fcafddb31885a697fc1d9aca316e10db79fe19f7.tar.bz2
ENH: add a find motif
Diffstat (limited to 'Modules/FindMotif.cmake')
-rw-r--r--Modules/FindMotif.cmake34
1 files changed, 34 insertions, 0 deletions
diff --git a/Modules/FindMotif.cmake b/Modules/FindMotif.cmake
new file mode 100644
index 0000000..6c437c3
--- /dev/null
+++ b/Modules/FindMotif.cmake
@@ -0,0 +1,34 @@
+# Try to find Motif (or lesstif)
+# Once done this will define
+#
+# MOTIF_FOUND - system has MOTIF
+# MOTIF_INCLUDE_DIR - where the Motif include directory can be found
+# MOTIF_LIBRARIES - Link these to use Motif
+
+SET(MOTIF_FOUND 0)
+IF(UNIX)
+ FIND_PATH(MOTIF_INCLUDE_DIR
+ Xm/Xm.h
+ /usr/X11R6/include
+ /usr/local/include
+ /usr/openwin/include
+ /usr/include
+ )
+
+ FIND_LIBRARY(MOTIF_LIBRARIES
+ Xm
+ /usr/X11R6/lib
+ /usr/local/lib
+ /usr/openwin/lib
+ /usr/lib
+ )
+
+ IF(MOTIF_LIBRARIES AND MOTIF_INCLUDE_DIR)
+ SET(MOTIF_FOUND 1)
+ ENDIF(MOTIF_LIBRARIES AND MOTIF_INCLUDE_DIR)
+ENDIF(UNIX)
+
+MARK_AS_ADVANCED(
+ MOTIF_INCLUDE_DIR
+ MOTIF_LIBRARIES
+)