##// END OF EJS Templates
It's now possible to create the variable and ask data to be retreived...
It's now possible to create the variable and ask data to be retreived asynchronously

File last commit:

r257:40b3607afb8e
r319:c71a61da7f3d
Show More
CMakeLists.txt
157 lines | 4.9 KiB | text/plain | TextLexer
Initialisation de l'application multithread avec le spimpl....
r21
## sciqlop - CMakeLists.txt
SET(EXECUTABLE_NAME "sciqlop")
Give executable name to parent to be able to find in in the package cmake file
r49 SCIQLOP_SET_TO_PARENT_SCOPE(EXECUTABLE_NAME)
Initialisation de l'application multithread avec le spimpl....
r21 SET(SOURCES_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/)
Refactoring of app module to avoir vera++ warning and to dispatch sources files in the corrects paths
r54 SET(INCLUDES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include")
SET(UI_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/ui)
Initialisation de l'application multithread avec le spimpl....
r21 SET(RES_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/resources)
Refactoring of app module to avoir vera++ warning and to dispatch sources files in the corrects paths
r54 # Include gui directory
include_directories("${INCLUDES_DIR}")
Initialisation de l'application multithread avec le spimpl....
r21 #
# Find Qt modules
#
SCIQLOP_FIND_QT(Core Widgets)
Add dependencies between target to avoid bug compilation when building...
r104
Initialisation de l'application multithread avec le spimpl....
r21
#
# Find dependent libraries
# ========================
find_package(sciqlop-gui)
SET(LIBRARIES ${SCIQLOP-GUI_LIBRARIES})
SET(EXTERN_SHARED_LIBRARIES)
INCLUDE_DIRECTORIES(${SCIQLOP-GUI_INCLUDE_DIR})
# Add sqpcore to the list of libraries to use
list(APPEND LIBRARIES ${SQPCORE_LIBRARY_NAME})
# Include core directory
include_directories("${CMAKE_CURRENT_SOURCE_DIR}/../core/include")
# Add dependent shared libraries
list(APPEND SHARED_LIBRARIES ${SQPCORE_SHARED_LIBRARIES})
# Retrieve the location of the dynamic library to copy it to the output path
#get_property(sqpcoreLocation TARGET ${SQPCORE_LIBRARY_NAME} PROPERTY LOCATION)
list(APPEND SHARED_LIBRARIES_FROM_TARGETS ${sqpcoreLocation})
Refactoring of app module to avoir vera++ warning and to dispatch sources files in the corrects paths
r54 # Ui files
FILE (GLOB_RECURSE PROJECT_FORMS ${UI_FOLDER}/*.ui)
Initialisation de l'application multithread avec le spimpl....
r21 #
# Compile the application
#
FILE (GLOB_RECURSE APPLICATION_SOURCES
Refactoring of app module to avoir vera++ warning and to dispatch sources files in the corrects paths
r54 ${INCLUDES_DIR}/*.h
${SOURCES_DIR}/*.c
${SOURCES_DIR}/*.cpp
${SOURCES_DIR}/*.h
${PROJECT_FORMS})
Initialisation de l'application multithread avec le spimpl....
r21
FILE (GLOB_RECURSE APPLICATION_RESOURCES ${RES_FOLDER}/*.qrc)
QT5_ADD_RESOURCES(RCC_HDRS ${APPLICATION_RESOURCES} )
QT5_WRAP_UI(UIS_HDRS
${PROJECT_FORMS}
)
ADD_EXECUTABLE(${EXECUTABLE_NAME} ${APPLICATION_SOURCES} ${RCC_HDRS} ${UIS_HDRS})
set_property(TARGET ${EXECUTABLE_NAME} PROPERTY CXX_STANDARD 14)
set_property(TARGET ${EXECUTABLE_NAME} PROPERTY CXX_STANDARD_REQUIRED ON)
target_link_libraries(${EXECUTABLE_NAME}
${LIBRARIES})
Configuration update to permit make install on linux
r257
INSTALL(TARGETS ${EXECUTABLE_NAME}
RUNTIME DESTINATION ${INSTALL_BINARY_DIR}
LIBRARY DESTINATION ${INSTALL_BINARY_DIR}
ARCHIVE DESTINATION ${INSTALL_BINARY_DIR}
)
Initialisation de l'application multithread avec le spimpl....
r21 # Link with Qt5 modules
qt5_use_modules(${EXECUTABLE_NAME} Core Widgets)
Add dependencies between target to avoid bug compilation when building...
r104
add_dependencies(${EXECUTABLE_NAME} ${SQPGUI_LIBRARY_NAME} ${SQPCORE_LIBRARY_NAME})
Initialisation de l'application multithread avec le spimpl....
r21
# Add the files to the list of files to be analyzed
LIST(APPEND CHECKSTYLE_INPUT_FILES ${APPLICATION_SOURCES})
SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_INPUT_FILES)
# Vera++ exclusion files
Alexandre Leroux
Add vera exclusions
r39 LIST(APPEND CHECKSTYLE_EXCLUSION_FILES ${CMAKE_CURRENT_SOURCE_DIR}/vera-exclusions/exclusions.txt)
Initialisation de l'application multithread avec le spimpl....
r21 SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_EXCLUSION_FILES)
#
# Compile the tests
#
IF(BUILD_TESTS)
Alexandre Leroux
commit temp
r41
Initialisation de l'application multithread avec le spimpl....
r21 INCLUDE_DIRECTORIES(${SOURCES_DIR})
FILE (GLOB_RECURSE TESTS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/Test*.cpp)
FILE (GLOB_RECURSE TESTS_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/Test*.h)
SET( TEST_LIBRARIES ${LIBRARIES})
FOREACH( testFile ${TESTS_SOURCES} )
GET_FILENAME_COMPONENT( testDirectory ${testFile} DIRECTORY )
Alexandre Leroux
commit temp
r41 GET_FILENAME_COMPONENT( testName ${testFile} NAME_WE )
Initialisation de l'application multithread avec le spimpl....
r21
# Add to the list of sources files all the sources in the same
# directory that aren't another test
FILE (GLOB currentTestSources
${testDirectory}/*.c
${testDirectory}/*.cpp
${testDirectory}/*.h)
LIST (REMOVE_ITEM currentTestSources ${TESTS_SOURCES})
LIST (REMOVE_ITEM currentTestSources ${TESTS_HEADERS})
ADD_EXECUTABLE(${testName} ${testFile} ${currentTestSources})
Remove unused gcov link
r45 TARGET_LINK_LIBRARIES( ${testName} ${TEST_LIBRARIES})
Initialisation de l'application multithread avec le spimpl....
r21 qt5_use_modules(${testName} Test)
ADD_TEST( NAME ${testName} COMMAND ${testName} )
SCIQLOP_COPY_TO_TARGET(RUNTIME ${testName})
ENDFOREACH( testFile )
LIST(APPEND testFilesToFormat ${TESTS_SOURCES})
LIST(APPEND testFilesToFormat ${TESTS_HEADERS})
LIST(APPEND FORMATTING_INPUT_FILES ${testFilesToFormat})
Alexandre Leroux
commit temp
r41
Initialisation de l'application multithread avec le spimpl....
r21 SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES)
ENDIF(BUILD_TESTS)
#
# Set the files that must be formatted by clang-format.
#
LIST (APPEND FORMATTING_INPUT_FILES ${APPLICATION_SOURCES})
SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES)
#
# Set the directories that doxygen must browse to generate the
# documentation.
#
# Source directories:
LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/docs")
LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src")
SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_INPUT_DIRS)
# Source directories to exclude from the documentation generation
#LIST (APPEND DOXYGEN_EXCLUDE_PATTERNS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir/*")
SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_EXCLUDE_PATTERNS)
#
# Set the directories with the sources to analyze and propagate the
# modification to the parent scope
#
# Source directories to analyze:
LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src")
LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/tests")
SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_INPUT_DIRS)
# Source directories to exclude from the analysis
#LIST (APPEND ANALYSIS_EXCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir")
SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_EXCLUDE_DIRS)