##// END OF EJS Templates
Merge branch 'feature/ThreadFix' of...
Merge branch 'feature/ThreadFix' of https://perrinel@hephaistos.lpp.polytechnique.fr/rhodecode/GIT_REPOSITORIES/LPP/Users/mperrinel/SCIQLOP-Initialisation into feature/ThreadFix Conflicts: core/src/Variable/Variable.cpp core/src/Variable/VariableCacheController.cpp core/src/Variable/VariableController.cpp gui/src/Visualization/VisualizationGraphHelper.cpp plugins/mockplugin/src/CosinusProvider.cpp

File last commit:

r21:45edf6844d32
r369:65d06a34f5f1 merge
Show More
Findsciqlop-gui.cmake
21 lines | 616 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)
# TODO: Add Mac Support
set(SCIQLOP-GUI_LIBRARIES ${LIBRARY_OUTPUT_PATH}/libsciqlop_gui${DEBUG_SUFFIX}.${OS_LIB_EXTENSION})
set(SCIQLOP-GUI_FOUND TRUE)