##// END OF EJS Templates
Creates a interface that defines a variable container...
Creates a interface that defines a variable container - A variable container is an entity that can eventually accomodate a variable (for example, from a menu or d'n'd) - The interfaces declares canDrop() method, that will be used to create a menu for a variable containing only the containers available for it, or to enable/disable d'n'd of this variable on a container - Each visualization widget is a variable container, so it implements canDrop() method

File last commit:

r21:45edf6844d32
r194:7ef1d04a5917
Show More
Findsciqlop-gui.cmake
21 lines | 616 B | text/x-cmake | CMakeLexer
/ gui / cmake / Findsciqlop-gui.cmake
# - Try to find sciqlop-gui
# Once done this will define
# SCIQLOP-GUI_FOUND - System has sciqlop-gui
# SCIQLOP-GUI_INCLUDE_DIR - The sciqlop-gui include directories
# SCIQLOP-GUI_LIBRARIES - The libraries needed to use sciqlop-gui
if(SCIQLOP-GUI_FOUND)
return()
endif(SCIQLOP-GUI_FOUND)
set(SCIQLOP-GUI_INCLUDE_DIR ${sciqlop-gui_DIR}/../include)
set (OS_LIB_EXTENSION "so")
if(WIN32)
set (OS_LIB_EXTENSION "dll")
endif(WIN32)
# TODO: Add Mac Support
set(SCIQLOP-GUI_LIBRARIES ${LIBRARY_OUTPUT_PATH}/libsciqlop_gui${DEBUG_SUFFIX}.${OS_LIB_EXTENSION})
set(SCIQLOP-GUI_FOUND TRUE)