##// END OF EJS Templates
Inclusion de core dans app commenté pour éviter un warning cmake. Sera remis au norme lors des implémentation
Inclusion de core dans app commenté pour éviter un warning cmake. Sera remis au norme lors des implémentation

File last commit:

r9:0e94a0eca8ab
r12:173cd0fbc359
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")