##// END OF EJS Templates
Creates enum that represents the value types that can be read in AMDA...
Creates enum that represents the value types that can be read in AMDA This enum is passed in parameter of the reading method to parse the result file according to it

File last commit:

r108:6ac01596a3cb
r563:a08e6992e146
Show More
Findsciqlop-mockplugin.cmake
22 lines | 773 B | text/x-cmake | CMakeLexer
/ plugins / mockplugin / cmake / Findsciqlop-mockplugin.cmake
# - Try to find sciqlop-mockplugin
# Once done this will define
# SCIQLOP-MOCKPLUGIN_FOUND - System has sciqlop-mockplugin
# SCIQLOP-MOCKPLUGIN_INCLUDE_DIR - The sciqlop-mockplugin include directories
# SCIQLOP-MOCKPLUGIN_LIBRARIES - The libraries needed to use sciqlop-mockplugin
if(SCIQLOP-MOCKPLUGIN_FOUND)
return()
endif(SCIQLOP-MOCKPLUGIN_FOUND)
set(SCIQLOP-MOCKPLUGIN_INCLUDE_DIR ${sciqlop-mockplugin_DIR}/../include)
set (OS_LIB_EXTENSION "so")
if(WIN32)
set (OS_LIB_EXTENSION "dll")
endif(WIN32)
# TODO: Add Mac Support
set(SCIQLOP-MOCKPLUGIN_LIBRARIES_NAME "libsciqlop_mockplugin${DEBUG_SUFFIX}.${OS_LIB_EXTENSION}")
set(SCIQLOP-MOCKPLUGIN_LIBRARIES "${LIBRARY_OUTPUT_PATH}/${SCIQLOP-MOCKPLUGIN_LIBRARIES_NAME}")
set(SCIQLOP-MOCKPLUGIN_FOUND TRUE)