FindMotif¶
Finds Motif (or LessTif) graphical user interface toolkit:
find_package(Motif [...])
結果變數¶
該模組定義了以下變數:
Motif_FOUND
在 3.3 版被加入.
Boolean indicating whether Motif was found.
快取變數¶
The following cache variables may also be set:
MOTIF_INCLUDE_DIR
Include directories needed to use Motif.
MOTIF_LIBRARIES
Libraries needed to link to Motif.
已棄用的變數¶
The following variables are provided for backward compatibility:
MOTIF_FOUND
在 4.2 版之後被棄用: Use
Motif_FOUND
, which has the same value.Boolean indicating whether Motif was found.
範例¶
Finding Motif and creating an imported interface target for linking it to a project target:
find_package(Motif)
if(Motif_FOUND AND NOT TARGET Motif::Motif)
add_library(Motif::Motif INTERFACE IMPORTED)
set_target_properties(
Motif::Motif
PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${MOTIF_INCLUDE_DIR}"
INTERFACE_LINK_LIBRARIES "${MOTIF_LIBRARIES}"
)
endif()
target_link_libraries(example PRIVATE Motif::Motif)