##// END OF EJS Templates
AJout de script helper pour démarrer les consoles (cmd, git-bash) avec le bon environnements dans windows
AJout de script helper pour démarrer les consoles (cmd, git-bash) avec le bon environnements dans windows

File last commit:

r9:0e94a0eca8ab
r13:6b14eae689f0
Show More
sciqlop_applications.cmake
38 lines | 642 B | text/x-cmake | CMakeLexer
/ cmake / sciqlop_applications.cmake
#
# Sciqlop_modules.cmake
#
# Set ouptut directories
#
SET (EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/dist/${CMAKE_BUILD_TYPE})
SET (LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}/dist/${CMAKE_BUILD_TYPE})
#
# Compile the core
#
ADD_SUBDIRECTORY("${CMAKE_SOURCE_DIR}/sqpcore")
#
# Compile the gui
#
#ADD_SUBDIRECTORY("${CMAKE_SOURCE_DIR}/sqpgui")
#
# Compile the app
#
ADD_SUBDIRECTORY("${CMAKE_SOURCE_DIR}/sqpapp")
#
# Code formatting
#
INCLUDE ("cmake/sciqlop_formatting.cmake")
#
# Documentation generation
#
INCLUDE ("cmake/sciqlop_doxygen.cmake")
#
# Source code analysis
#
INCLUDE ("cmake/sciqlop_code_analysis.cmake")