##// END OF EJS Templates
Adds "hybrid" server mode...
Adds "hybrid" server mode Hybrid mode allows to use both the default server and the test server, depending on the "server" setting of each product in the JSON file

File last commit:

r909:f9b30b97e672
r1118:7dc72cc510ff
Show More
Findsciqlop-mockplugin.cmake
26 lines | 810 B | text/x-cmake | CMakeLexer
/ plugins / mockplugin / cmake / Findsciqlop-mockplugin.cmake
Alexandre Leroux
CMakeFiles for mock plugin
r98 # - 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)
Thibaud Rabillard
Add mac support in cmake
r909
if (APPLE)
set (OS_LIB_EXTENSION "dylib")
endif(APPLE)
Alexandre Leroux
Add target to copy MockPlugin library in "plugins" directory after compilation
r108 set(SCIQLOP-MOCKPLUGIN_LIBRARIES_NAME "libsciqlop_mockplugin${DEBUG_SUFFIX}.${OS_LIB_EXTENSION}")
set(SCIQLOP-MOCKPLUGIN_LIBRARIES "${LIBRARY_OUTPUT_PATH}/${SCIQLOP-MOCKPLUGIN_LIBRARIES_NAME}")
Alexandre Leroux
CMakeFiles for mock plugin
r98
set(SCIQLOP-MOCKPLUGIN_FOUND TRUE)