##// 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-core.cmake
25 lines | 671 B | text/x-cmake | CMakeLexer
/ core / cmake / Findsciqlop-core.cmake
Initialisation de l'application multithread avec le spimpl....
r21 # - Try to find sciqlop-core
# Once done this will define
# SCIQLOP-CORE_FOUND - System has sciqlop-core
# SCIQLOP-CORE_INCLUDE_DIR - The sciqlop-core include directories
# SCIQLOP-CORE_LIBRARIES - The libraries needed to use sciqlop-core
if(SCIQLOP-CORE_FOUND)
return()
endif(SCIQLOP-CORE_FOUND)
set(SCIQLOP-CORE_INCLUDE_DIR ${sciqlop-core_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)
Initialisation de l'application multithread avec le spimpl....
r21 set(SCIQLOP-CORE_LIBRARIES ${LIBRARY_OUTPUT_PATH}/libsciqlop_core${DEBUG_SUFFIX}.${OS_LIB_EXTENSION})
set(SCIQLOP-CORE_FOUND TRUE)