##// END OF EJS Templates
Updates UI to not call the sort method when update graphs, as data series are already sorted
Updates UI to not call the sort method when update graphs, as data series are already sorted

File last commit:

r349:3585c3c11ab5
r453:a8d8791b7e7a
Show More
Findsciqlop-amda.cmake
22 lines | 677 B | text/x-cmake | CMakeLexer
/ plugins / amda / cmake / Findsciqlop-amda.cmake
Alexandre Leroux
Cmakes for AMDA plugin
r349 # - Try to find sciqlop-amda
# Once done this will define
# SCIQLOP-AMDA_FOUND - System has sciqlop-amda
# SCIQLOP-AMDA_INCLUDE_DIR - The sciqlop-amda include directories
# SCIQLOP-AMDA_LIBRARIES - The libraries needed to use sciqlop-amda
if(SCIQLOP-AMDA_FOUND)
return()
endif(SCIQLOP-AMDA_FOUND)
set(SCIQLOP-AMDA_INCLUDE_DIR ${sciqlop-amda_DIR}/../include)
set (OS_LIB_EXTENSION "so")
if(WIN32)
set (OS_LIB_EXTENSION "dll")
endif(WIN32)
# TODO: Add Mac Support
set(SCIQLOP-AMDA_LIBRARIES_NAME "libsciqlop_amda${DEBUG_SUFFIX}.${OS_LIB_EXTENSION}")
set(SCIQLOP-AMDA_LIBRARIES "${LIBRARY_OUTPUT_PATH}/${SCIQLOP-AMDA_LIBRARIES_NAME}")
set(SCIQLOP-AMDA_FOUND TRUE)