##// END OF EJS Templates
Updates sqp color scale thresholds (1)...
Updates sqp color scale thresholds (1) Creates method to update range each time data of its colormap change

File last commit:

r911:f9b30b97e672
r1060:1474b0522998
Show More
Findsciqlop-gui.cmake
25 lines | 657 B | text/x-cmake | CMakeLexer
/ gui / cmake / Findsciqlop-gui.cmake
Initialisation de l'application multithread avec le spimpl....
r21 # - 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)
Thibaud Rabillard
Add mac support in cmake
r911
if (APPLE)
set (OS_LIB_EXTENSION "dylib")
endif(APPLE)
Initialisation de l'application multithread avec le spimpl....
r21 set(SCIQLOP-GUI_LIBRARIES ${LIBRARY_OUTPUT_PATH}/libsciqlop_gui${DEBUG_SUFFIX}.${OS_LIB_EXTENSION})
set(SCIQLOP-GUI_FOUND TRUE)