@@ -0,0 +1,49 | |||||
|
1 | #include <DataSource/DataSourceController.h> | |||
|
2 | #include <DataSource/DataSourceItem.h> | |||
|
3 | ||||
|
4 | #include <QObject> | |||
|
5 | #include <QtTest> | |||
|
6 | ||||
|
7 | #include <memory> | |||
|
8 | ||||
|
9 | class TestDataSourceController : public QObject { | |||
|
10 | Q_OBJECT | |||
|
11 | private slots: | |||
|
12 | void testRegisterDataSource(); | |||
|
13 | void testSetDataSourceItem(); | |||
|
14 | }; | |||
|
15 | ||||
|
16 | void TestDataSourceController::testRegisterDataSource() | |||
|
17 | { | |||
|
18 | DataSourceController dataSourceController{}; | |||
|
19 | ||||
|
20 | auto uid = dataSourceController.registerDataSource(QStringLiteral("Source1")); | |||
|
21 | QVERIFY(!uid.isNull()); | |||
|
22 | } | |||
|
23 | ||||
|
24 | void TestDataSourceController::testSetDataSourceItem() | |||
|
25 | { | |||
|
26 | DataSourceController dataSourceController{}; | |||
|
27 | ||||
|
28 | // Spy to test controllers' signals | |||
|
29 | QSignalSpy signalSpy{&dataSourceController, SIGNAL(dataSourceItemSet(const DataSourceItem &))}; | |||
|
30 | ||||
|
31 | // Create a data source item | |||
|
32 | auto source1Name = QStringLiteral("Source1"); | |||
|
33 | auto source1Values = QVector<QVariant>{source1Name}; | |||
|
34 | auto source1Item = std::make_unique<DataSourceItem>(std::move(source1Values)); | |||
|
35 | ||||
|
36 | // Add data source item to the controller and check that a signal has been emitted after setting | |||
|
37 | // data source item in the controller | |||
|
38 | auto source1Uid = dataSourceController.registerDataSource(source1Name); | |||
|
39 | dataSourceController.setDataSourceItem(source1Uid, std::move(source1Item)); | |||
|
40 | QCOMPARE(signalSpy.count(), 1); | |||
|
41 | ||||
|
42 | // Try to a data source item with an unregistered uid and check that no signal has been emitted | |||
|
43 | auto unregisteredUid = QUuid::createUuid(); | |||
|
44 | dataSourceController.setDataSourceItem(unregisteredUid, std::make_unique<DataSourceItem>()); | |||
|
45 | QCOMPARE(signalSpy.count(), 1); | |||
|
46 | } | |||
|
47 | ||||
|
48 | QTEST_MAIN(TestDataSourceController) | |||
|
49 | #include "TestDataSourceController.moc" |
@@ -1,128 +1,130 | |||||
1 |
|
1 | |||
2 | ## core - CMakeLists.txt |
|
2 | ## core - CMakeLists.txt | |
3 | STRING(TOLOWER ${CMAKE_PROJECT_NAME} LIBRARY_PREFFIX) |
|
3 | STRING(TOLOWER ${CMAKE_PROJECT_NAME} LIBRARY_PREFFIX) | |
4 | SET(SQPCORE_LIBRARY_NAME "${LIBRARY_PREFFIX}_core${DEBUG_SUFFIX}") |
|
4 | SET(SQPCORE_LIBRARY_NAME "${LIBRARY_PREFFIX}_core${DEBUG_SUFFIX}") | |
5 | SET(SOURCES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/src/") |
|
5 | SET(SOURCES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/src/") | |
6 | SET(INCLUDES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include/") |
|
6 | SET(INCLUDES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include/") | |
7 |
|
7 | |||
8 | # Include core directory |
|
8 | # Include core directory | |
9 | include_directories("${INCLUDES_DIR}") |
|
9 | include_directories("${INCLUDES_DIR}") | |
10 |
|
10 | |||
11 | # Set a variable to display a warning in the version files. |
|
11 | # Set a variable to display a warning in the version files. | |
12 | SET(SCIQLOP_CMAKE_GENERATION_WARNING "DON'T CHANGE THIS FILE. AUTOGENERATED BY CMAKE.") |
|
12 | SET(SCIQLOP_CMAKE_GENERATION_WARNING "DON'T CHANGE THIS FILE. AUTOGENERATED BY CMAKE.") | |
13 | # Generate the version file from the cmake version variables. The version |
|
13 | # Generate the version file from the cmake version variables. The version | |
14 | # variables are defined in the cmake/sciqlop_version.cmake file. |
|
14 | # variables are defined in the cmake/sciqlop_version.cmake file. | |
15 | CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/resources/Version.h.in" |
|
15 | CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/resources/Version.h.in" | |
16 | "${INCLUDES_DIR}/Version.h") |
|
16 | "${INCLUDES_DIR}/Version.h") | |
17 | CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/resources/Version.cpp.in" |
|
17 | CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/resources/Version.cpp.in" | |
18 | "${SOURCES_DIR}/Version.cpp") |
|
18 | "${SOURCES_DIR}/Version.cpp") | |
19 |
|
19 | |||
20 | # |
|
20 | # | |
21 | # Find Qt modules |
|
21 | # Find Qt modules | |
22 | # |
|
22 | # | |
23 | SCIQLOP_FIND_QT(Core) |
|
23 | SCIQLOP_FIND_QT(Core) | |
24 |
|
24 | |||
25 | # |
|
25 | # | |
26 | # Compile the library library |
|
26 | # Compile the library library | |
27 | # |
|
27 | # | |
28 | FILE (GLOB_RECURSE MODULE_SOURCES |
|
28 | FILE (GLOB_RECURSE MODULE_SOURCES | |
29 | ${INCLUDES_DIR}/*.h |
|
29 | ${INCLUDES_DIR}/*.h | |
30 | ${SOURCES_DIR}/*.c |
|
30 | ${SOURCES_DIR}/*.c | |
31 | ${SOURCES_DIR}/*.cpp |
|
31 | ${SOURCES_DIR}/*.cpp | |
32 | ${SOURCES_DIR}/*.h) |
|
32 | ${SOURCES_DIR}/*.h) | |
33 |
|
33 | |||
34 | ADD_LIBRARY(${SQPCORE_LIBRARY_NAME} ${MODULE_SOURCES}) |
|
34 | ADD_LIBRARY(${SQPCORE_LIBRARY_NAME} ${MODULE_SOURCES}) | |
35 | set_property(TARGET ${SQPCORE_LIBRARY_NAME} PROPERTY CXX_STANDARD 14) |
|
35 | set_property(TARGET ${SQPCORE_LIBRARY_NAME} PROPERTY CXX_STANDARD 14) | |
36 | set_property(TARGET ${SQPCORE_LIBRARY_NAME} PROPERTY CXX_STANDARD_REQUIRED ON) |
|
36 | set_property(TARGET ${SQPCORE_LIBRARY_NAME} PROPERTY CXX_STANDARD_REQUIRED ON) | |
37 | TARGET_LINK_LIBRARIES(${SQPCORE_LIBRARY_NAME}) |
|
37 | TARGET_LINK_LIBRARIES(${SQPCORE_LIBRARY_NAME}) | |
38 | qt5_use_modules(${SQPCORE_LIBRARY_NAME} Core) |
|
38 | qt5_use_modules(${SQPCORE_LIBRARY_NAME} Core) | |
39 |
|
39 | |||
40 | # From cmake documentation: http://www.cmake.org/cmake/help/v3.0/manual/cmake-buildsystem.7.html |
|
40 | # From cmake documentation: http://www.cmake.org/cmake/help/v3.0/manual/cmake-buildsystem.7.html | |
41 | # Entries in the COMPILE_DEFINITIONS are prefixed with -D or /D and added to the compile line in an unspecified order. |
|
41 | # Entries in the COMPILE_DEFINITIONS are prefixed with -D or /D and added to the compile line in an unspecified order. | |
42 | # The DEFINE_SYMBOL target property is also added as a compile definition as a special convenience case for SHARED and MODULE library targets |
|
42 | # The DEFINE_SYMBOL target property is also added as a compile definition as a special convenience case for SHARED and MODULE library targets | |
43 | IF(BUILD_SHARED_LIBS) |
|
43 | IF(BUILD_SHARED_LIBS) | |
44 | SET_TARGET_PROPERTIES(${SQPCORE_LIBRARY_NAME} PROPERTIES COMPILE_DEFINITIONS "SCIQLOP_EXPORT") |
|
44 | SET_TARGET_PROPERTIES(${SQPCORE_LIBRARY_NAME} PROPERTIES COMPILE_DEFINITIONS "SCIQLOP_EXPORT") | |
45 | ELSE() |
|
45 | ELSE() | |
46 | TARGET_COMPILE_DEFINITIONS(${SQPCORE_LIBRARY_NAME} PUBLIC "SCIQLOP_STATIC_LIBRARIES") |
|
46 | TARGET_COMPILE_DEFINITIONS(${SQPCORE_LIBRARY_NAME} PUBLIC "SCIQLOP_STATIC_LIBRARIES") | |
47 | ENDIF() |
|
47 | ENDIF() | |
48 |
|
48 | |||
49 | # Set the variable to parent scope so that the other projects can copy the |
|
49 | # Set the variable to parent scope so that the other projects can copy the | |
50 | # dependent shared libraries |
|
50 | # dependent shared libraries | |
51 | SCIQLOP_SET_TO_PARENT_SCOPE(SQPCORE_LIBRARY_NAME) |
|
51 | SCIQLOP_SET_TO_PARENT_SCOPE(SQPCORE_LIBRARY_NAME) | |
52 |
|
52 | |||
53 | # Copy extern shared libraries to the lib folder |
|
53 | # Copy extern shared libraries to the lib folder | |
54 | SCIQLOP_COPY_TO_TARGET(LIBRARY ${SQPCORE_LIBRARY_NAME} ${EXTERN_SHARED_LIBRARIES}) |
|
54 | SCIQLOP_COPY_TO_TARGET(LIBRARY ${SQPCORE_LIBRARY_NAME} ${EXTERN_SHARED_LIBRARIES}) | |
55 |
|
55 | |||
56 | # Add the files to the list of files to be analyzed |
|
56 | # Add the files to the list of files to be analyzed | |
57 | LIST(APPEND CHECKSTYLE_INPUT_FILES ${MODULE_SOURCES}) |
|
57 | LIST(APPEND CHECKSTYLE_INPUT_FILES ${MODULE_SOURCES}) | |
58 | SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_INPUT_FILES) |
|
58 | SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_INPUT_FILES) | |
59 | # Vera++ exclusion files |
|
59 | # Vera++ exclusion files | |
60 | LIST(APPEND CHECKSTYLE_EXCLUSION_FILES ${CMAKE_CURRENT_SOURCE_DIR}/vera-exclusions/exclusions.txt) |
|
60 | LIST(APPEND CHECKSTYLE_EXCLUSION_FILES ${CMAKE_CURRENT_SOURCE_DIR}/vera-exclusions/exclusions.txt) | |
61 | SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_EXCLUSION_FILES) |
|
61 | SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_EXCLUSION_FILES) | |
62 |
|
62 | |||
63 | # |
|
63 | # | |
64 | # Compile the tests |
|
64 | # Compile the tests | |
65 | # |
|
65 | # | |
66 | IF(BUILD_TESTS) |
|
66 | IF(BUILD_TESTS) | |
67 | INCLUDE_DIRECTORIES(${SOURCES_DIR}) |
|
67 | INCLUDE_DIRECTORIES(${SOURCES_DIR}) | |
68 | FILE (GLOB_RECURSE TESTS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/Test*.cpp) |
|
68 | FILE (GLOB_RECURSE TESTS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/Test*.cpp) | |
69 | FILE (GLOB_RECURSE TESTS_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/Test*.h) |
|
69 | FILE (GLOB_RECURSE TESTS_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/Test*.h) | |
70 | SET( TEST_LIBRARIES ${SQPCORE_LIBRARY_NAME}) |
|
70 | SET( TEST_LIBRARIES ${SQPCORE_LIBRARY_NAME}) | |
71 |
|
71 | |||
72 | FOREACH( testFile ${TESTS_SOURCES} ) |
|
72 | FOREACH( testFile ${TESTS_SOURCES} ) | |
73 | GET_FILENAME_COMPONENT( testDirectory ${testFile} DIRECTORY ) |
|
73 | GET_FILENAME_COMPONENT( testDirectory ${testFile} DIRECTORY ) | |
74 | GET_FILENAME_COMPONENT( testName ${testFile} NAME_WE ) |
|
74 | GET_FILENAME_COMPONENT( testName ${testFile} NAME_WE ) | |
75 |
|
75 | |||
76 | # Add to the list of sources files all the sources in the same |
|
76 | # Add to the list of sources files all the sources in the same | |
77 | # directory that aren't another test |
|
77 | # directory that aren't another test | |
78 | FILE (GLOB currentTestSources |
|
78 | FILE (GLOB currentTestSources | |
79 | ${testDirectory}/*.c |
|
79 | ${testDirectory}/*.c | |
80 | ${testDirectory}/*.cpp |
|
80 | ${testDirectory}/*.cpp | |
81 | ${testDirectory}/*.h) |
|
81 | ${testDirectory}/*.h) | |
82 |
|
|
82 | LIST (REMOVE_ITEM currentTestSources ${TESTS_SOURCES}) | |
83 |
|
|
83 | # LIST (REMOVE_ITEM currentTestSources ${TESTS_HEADERS}) | |
84 |
|
84 | |||
85 | ADD_EXECUTABLE(${testName} ${testFile} ${currentTestSources}) |
|
85 | ADD_EXECUTABLE(${testName} ${testFile} ${currentTestSources}) | |
|
86 | set_property(TARGET ${testName} PROPERTY CXX_STANDARD 14) | |||
|
87 | set_property(TARGET ${testName} PROPERTY CXX_STANDARD_REQUIRED ON) | |||
86 | TARGET_LINK_LIBRARIES( ${testName} ${TEST_LIBRARIES} ) |
|
88 | TARGET_LINK_LIBRARIES( ${testName} ${TEST_LIBRARIES} ) | |
87 | qt5_use_modules(${testName} Test) |
|
89 | qt5_use_modules(${testName} Test) | |
88 |
|
90 | |||
89 | ADD_TEST( NAME ${testName} COMMAND ${testName} ) |
|
91 | ADD_TEST( NAME ${testName} COMMAND ${testName} ) | |
90 |
|
92 | |||
91 | SCIQLOP_COPY_TO_TARGET(RUNTIME ${testName} ${EXTERN_SHARED_LIBRARIES}) |
|
93 | SCIQLOP_COPY_TO_TARGET(RUNTIME ${testName} ${EXTERN_SHARED_LIBRARIES}) | |
92 | ENDFOREACH( testFile ) |
|
94 | ENDFOREACH( testFile ) | |
93 |
|
95 | |||
94 | LIST(APPEND testFilesToFormat ${TESTS_SOURCES}) |
|
96 | LIST(APPEND testFilesToFormat ${TESTS_SOURCES}) | |
95 | LIST(APPEND testFilesToFormat ${TESTS_HEADERS}) |
|
97 | LIST(APPEND testFilesToFormat ${TESTS_HEADERS}) | |
96 | LIST(APPEND FORMATTING_INPUT_FILES ${testFilesToFormat}) |
|
98 | LIST(APPEND FORMATTING_INPUT_FILES ${testFilesToFormat}) | |
97 | SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES) |
|
99 | SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES) | |
98 | ENDIF(BUILD_TESTS) |
|
100 | ENDIF(BUILD_TESTS) | |
99 |
|
101 | |||
100 | # |
|
102 | # | |
101 | # Set the files that must be formatted by clang-format. |
|
103 | # Set the files that must be formatted by clang-format. | |
102 | # |
|
104 | # | |
103 | LIST (APPEND FORMATTING_INPUT_FILES ${MODULE_SOURCES}) |
|
105 | LIST (APPEND FORMATTING_INPUT_FILES ${MODULE_SOURCES}) | |
104 | SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES) |
|
106 | SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES) | |
105 |
|
107 | |||
106 | # |
|
108 | # | |
107 | # Set the directories that doxygen must browse to generate the |
|
109 | # Set the directories that doxygen must browse to generate the | |
108 | # documentation. |
|
110 | # documentation. | |
109 | # |
|
111 | # | |
110 | # Source directories: |
|
112 | # Source directories: | |
111 | LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/docs") |
|
113 | LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/docs") | |
112 | LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src") |
|
114 | LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src") | |
113 | SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_INPUT_DIRS) |
|
115 | SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_INPUT_DIRS) | |
114 | # Source directories to exclude from the documentation generation |
|
116 | # Source directories to exclude from the documentation generation | |
115 | #LIST (APPEND DOXYGEN_EXCLUDE_PATTERNS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir/*") |
|
117 | #LIST (APPEND DOXYGEN_EXCLUDE_PATTERNS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir/*") | |
116 | SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_EXCLUDE_PATTERNS) |
|
118 | SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_EXCLUDE_PATTERNS) | |
117 |
|
119 | |||
118 | # |
|
120 | # | |
119 | # Set the directories with the sources to analyze and propagate the |
|
121 | # Set the directories with the sources to analyze and propagate the | |
120 | # modification to the parent scope |
|
122 | # modification to the parent scope | |
121 | # |
|
123 | # | |
122 | # Source directories to analyze: |
|
124 | # Source directories to analyze: | |
123 | LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src") |
|
125 | LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src") | |
124 | LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/tests") |
|
126 | LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/tests") | |
125 | SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_INPUT_DIRS) |
|
127 | SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_INPUT_DIRS) | |
126 | # Source directories to exclude from the analysis |
|
128 | # Source directories to exclude from the analysis | |
127 | #LIST (APPEND ANALYSIS_EXCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir") |
|
129 | #LIST (APPEND ANALYSIS_EXCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir") | |
128 | SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_EXCLUDE_DIRS) |
|
130 | SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_EXCLUDE_DIRS) |
@@ -1,158 +1,160 | |||||
1 |
|
1 | |||
2 | ## gui - CMakeLists.txt |
|
2 | ## gui - CMakeLists.txt | |
3 | STRING(TOLOWER ${CMAKE_PROJECT_NAME} LIBRARY_PREFFIX) |
|
3 | STRING(TOLOWER ${CMAKE_PROJECT_NAME} LIBRARY_PREFFIX) | |
4 | SET(SQPGUI_LIBRARY_NAME "${LIBRARY_PREFFIX}_gui${DEBUG_SUFFIX}") |
|
4 | SET(SQPGUI_LIBRARY_NAME "${LIBRARY_PREFFIX}_gui${DEBUG_SUFFIX}") | |
5 | SET(SOURCES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/src") |
|
5 | SET(SOURCES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/src") | |
6 | SET(INCLUDES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include") |
|
6 | SET(INCLUDES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include") | |
7 | SET(UI_FOLDER "${CMAKE_CURRENT_SOURCE_DIR}/ui") |
|
7 | SET(UI_FOLDER "${CMAKE_CURRENT_SOURCE_DIR}/ui") | |
8 | SET(RES_FOLDER "${CMAKE_CURRENT_SOURCE_DIR}/resources") |
|
8 | SET(RES_FOLDER "${CMAKE_CURRENT_SOURCE_DIR}/resources") | |
9 |
|
9 | |||
10 | # Include gui directory |
|
10 | # Include gui directory | |
11 | include_directories("${INCLUDES_DIR}") |
|
11 | include_directories("${INCLUDES_DIR}") | |
12 | include_directories("${CMAKE_CURRENT_BINARY_DIR}") |
|
12 | include_directories("${CMAKE_CURRENT_BINARY_DIR}") | |
13 |
|
13 | |||
14 | # Set a variable to display a warning in the version files. |
|
14 | # Set a variable to display a warning in the version files. | |
15 | SET(SCIQLOP_CMAKE_GENERATION_WARNING "DON'T CHANGE THIS FILE. AUTOGENERATED BY CMAKE.") |
|
15 | SET(SCIQLOP_CMAKE_GENERATION_WARNING "DON'T CHANGE THIS FILE. AUTOGENERATED BY CMAKE.") | |
16 |
|
16 | |||
17 | # |
|
17 | # | |
18 | # Find Qt modules |
|
18 | # Find Qt modules | |
19 | # |
|
19 | # | |
20 | SCIQLOP_FIND_QT(Core Widgets) |
|
20 | SCIQLOP_FIND_QT(Core Widgets) | |
21 |
|
21 | |||
22 | # |
|
22 | # | |
23 | # Find dependent libraries |
|
23 | # Find dependent libraries | |
24 | # ======================== |
|
24 | # ======================== | |
25 | find_package(sciqlop-core) |
|
25 | find_package(sciqlop-core) | |
26 |
|
26 | |||
27 | SET(LIBRARIES ${SCIQLOP-CORE_LIBRARIES}) |
|
27 | SET(LIBRARIES ${SCIQLOP-CORE_LIBRARIES}) | |
28 |
|
28 | |||
29 | INCLUDE_DIRECTORIES(${SCIQLOP-CORE_INCLUDE_DIR}) |
|
29 | INCLUDE_DIRECTORIES(${SCIQLOP-CORE_INCLUDE_DIR}) | |
30 |
|
30 | |||
31 | # Add sqpcore to the list of libraries to use |
|
31 | # Add sqpcore to the list of libraries to use | |
32 | list(APPEND LIBRARIES ${SQPCORE_LIBRARY_NAME}) |
|
32 | list(APPEND LIBRARIES ${SQPCORE_LIBRARY_NAME}) | |
33 |
|
33 | |||
34 | # Add dependent shared libraries |
|
34 | # Add dependent shared libraries | |
35 | list(APPEND SHARED_LIBRARIES ${SQPCORE_SHARED_LIBRARIES}) |
|
35 | list(APPEND SHARED_LIBRARIES ${SQPCORE_SHARED_LIBRARIES}) | |
36 |
|
36 | |||
37 |
|
37 | |||
38 | # Ui files |
|
38 | # Ui files | |
39 | FILE (GLOB_RECURSE PROJECT_FORMS ${UI_FOLDER}/*.ui) |
|
39 | FILE (GLOB_RECURSE PROJECT_FORMS ${UI_FOLDER}/*.ui) | |
40 |
|
40 | |||
41 | # Resources files |
|
41 | # Resources files | |
42 | FILE (GLOB_RECURSE PROJECT_RESOURCES ${RES_FOLDER}/*.qrc) |
|
42 | FILE (GLOB_RECURSE PROJECT_RESOURCES ${RES_FOLDER}/*.qrc) | |
43 |
|
43 | |||
44 | # |
|
44 | # | |
45 | # Compile the library library |
|
45 | # Compile the library library | |
46 | # |
|
46 | # | |
47 | FILE (GLOB_RECURSE MODULE_SOURCES |
|
47 | FILE (GLOB_RECURSE MODULE_SOURCES | |
48 | ${INCLUDES_DIR}/*.h |
|
48 | ${INCLUDES_DIR}/*.h | |
49 | ${SOURCES_DIR}/*.c |
|
49 | ${SOURCES_DIR}/*.c | |
50 | ${SOURCES_DIR}/*.cpp |
|
50 | ${SOURCES_DIR}/*.cpp | |
51 | ${SOURCES_DIR}/*.h |
|
51 | ${SOURCES_DIR}/*.h | |
52 | ${PROJECT_FORMS}) |
|
52 | ${PROJECT_FORMS}) | |
53 |
|
53 | |||
54 | QT5_ADD_RESOURCES(RCC_HDRS |
|
54 | QT5_ADD_RESOURCES(RCC_HDRS | |
55 | ${PROJECT_RESOURCES} |
|
55 | ${PROJECT_RESOURCES} | |
56 | ) |
|
56 | ) | |
57 |
|
57 | |||
58 | QT5_WRAP_UI(UIS_HDRS |
|
58 | QT5_WRAP_UI(UIS_HDRS | |
59 | ${PROJECT_FORMS} |
|
59 | ${PROJECT_FORMS} | |
60 | ) |
|
60 | ) | |
61 |
|
61 | |||
62 |
|
62 | |||
63 | ADD_LIBRARY(${SQPGUI_LIBRARY_NAME} ${MODULE_SOURCES} ${UIS_HDRS} ${RCC_HDRS}) |
|
63 | ADD_LIBRARY(${SQPGUI_LIBRARY_NAME} ${MODULE_SOURCES} ${UIS_HDRS} ${RCC_HDRS}) | |
64 | set_property(TARGET ${SQPGUI_LIBRARY_NAME} PROPERTY CXX_STANDARD 14) |
|
64 | set_property(TARGET ${SQPGUI_LIBRARY_NAME} PROPERTY CXX_STANDARD 14) | |
65 | set_property(TARGET ${SQPGUI_LIBRARY_NAME} PROPERTY CXX_STANDARD_REQUIRED ON) |
|
65 | set_property(TARGET ${SQPGUI_LIBRARY_NAME} PROPERTY CXX_STANDARD_REQUIRED ON) | |
66 |
|
66 | |||
67 | TARGET_LINK_LIBRARIES(${SQPGUI_LIBRARY_NAME} ${LIBRARIES}) |
|
67 | TARGET_LINK_LIBRARIES(${SQPGUI_LIBRARY_NAME} ${LIBRARIES}) | |
68 | qt5_use_modules(${SQPGUI_LIBRARY_NAME} Core Widgets) |
|
68 | qt5_use_modules(${SQPGUI_LIBRARY_NAME} Core Widgets) | |
69 |
|
69 | |||
70 | # From cmake documentation: http://www.cmake.org/cmake/help/v3.0/manual/cmake-buildsystem.7.html |
|
70 | # From cmake documentation: http://www.cmake.org/cmake/help/v3.0/manual/cmake-buildsystem.7.html | |
71 | # Entries in the COMPILE_DEFINITIONS are prefixed with -D or /D and added to the compile line in an unspecified order. |
|
71 | # Entries in the COMPILE_DEFINITIONS are prefixed with -D or /D and added to the compile line in an unspecified order. | |
72 | # The DEFINE_SYMBOL target property is also added as a compile definition as a special convenience case for SHARED and MODULE library targets |
|
72 | # The DEFINE_SYMBOL target property is also added as a compile definition as a special convenience case for SHARED and MODULE library targets | |
73 | IF(BUILD_SHARED_LIBS) |
|
73 | IF(BUILD_SHARED_LIBS) | |
74 | SET_TARGET_PROPERTIES(${SQPGUI_LIBRARY_NAME} PROPERTIES COMPILE_DEFINITIONS "SCIQLOP_EXPORT") |
|
74 | SET_TARGET_PROPERTIES(${SQPGUI_LIBRARY_NAME} PROPERTIES COMPILE_DEFINITIONS "SCIQLOP_EXPORT") | |
75 | ELSE() |
|
75 | ELSE() | |
76 | TARGET_COMPILE_DEFINITIONS(${SQPGUI_LIBRARY_NAME} PUBLIC "SCIQLOP_STATIC_LIBRARIES") |
|
76 | TARGET_COMPILE_DEFINITIONS(${SQPGUI_LIBRARY_NAME} PUBLIC "SCIQLOP_STATIC_LIBRARIES") | |
77 | ENDIF() |
|
77 | ENDIF() | |
78 |
|
78 | |||
79 | # Set the variable to parent scope so that the other projects can copy the |
|
79 | # Set the variable to parent scope so that the other projects can copy the | |
80 | # dependent shared libraries |
|
80 | # dependent shared libraries | |
81 | SCIQLOP_SET_TO_PARENT_SCOPE(SQPGUI_LIBRARY_NAME) |
|
81 | SCIQLOP_SET_TO_PARENT_SCOPE(SQPGUI_LIBRARY_NAME) | |
82 |
|
82 | |||
83 | # Copy extern shared libraries to the lib folder |
|
83 | # Copy extern shared libraries to the lib folder | |
84 | SCIQLOP_COPY_TO_TARGET(LIBRARY ${SQPGUI_LIBRARY_NAME}) |
|
84 | SCIQLOP_COPY_TO_TARGET(LIBRARY ${SQPGUI_LIBRARY_NAME}) | |
85 |
|
85 | |||
86 | # Add the files to the list of files to be analyzed |
|
86 | # Add the files to the list of files to be analyzed | |
87 | LIST(APPEND CHECKSTYLE_INPUT_FILES ${MODULE_SOURCES}) |
|
87 | LIST(APPEND CHECKSTYLE_INPUT_FILES ${MODULE_SOURCES}) | |
88 | SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_INPUT_FILES) |
|
88 | SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_INPUT_FILES) | |
89 | # Vera++ exclusion files |
|
89 | # Vera++ exclusion files | |
90 | #LIST(APPEND CHECKSTYLE_EXCLUSION_FILES ${CMAKE_CURRENT_SOURCE_DIR}/path/to/exclusionFiles.tcl) |
|
90 | #LIST(APPEND CHECKSTYLE_EXCLUSION_FILES ${CMAKE_CURRENT_SOURCE_DIR}/path/to/exclusionFiles.tcl) | |
91 | SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_EXCLUSION_FILES) |
|
91 | SCIQLOP_SET_TO_PARENT_SCOPE(CHECKSTYLE_EXCLUSION_FILES) | |
92 |
|
92 | |||
93 | # |
|
93 | # | |
94 | # Compile the tests |
|
94 | # Compile the tests | |
95 | # |
|
95 | # | |
96 | IF(BUILD_TESTS) |
|
96 | IF(BUILD_TESTS) | |
97 | INCLUDE_DIRECTORIES(${SOURCES_DIR}) |
|
97 | INCLUDE_DIRECTORIES(${SOURCES_DIR}) | |
98 | FILE (GLOB_RECURSE TESTS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/Test*.cpp) |
|
98 | FILE (GLOB_RECURSE TESTS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/Test*.cpp) | |
99 | FILE (GLOB_RECURSE TESTS_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/Test*.h) |
|
99 | FILE (GLOB_RECURSE TESTS_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/Test*.h) | |
100 | SET( TEST_LIBRARIES ${SQPGUI_LIBRARY_NAME}) |
|
100 | SET( TEST_LIBRARIES ${SQPGUI_LIBRARY_NAME}) | |
101 |
|
101 | |||
102 | FOREACH( testFile ${TESTS_SOURCES} ) |
|
102 | FOREACH( testFile ${TESTS_SOURCES} ) | |
103 | GET_FILENAME_COMPONENT( testDirectory ${testFile} DIRECTORY ) |
|
103 | GET_FILENAME_COMPONENT( testDirectory ${testFile} DIRECTORY ) | |
104 | GET_FILENAME_COMPONENT( testName ${testFile} NAME_WE ) |
|
104 | GET_FILENAME_COMPONENT( testName ${testFile} NAME_WE ) | |
105 |
|
105 | |||
106 | # Add to the list of sources files all the sources in the same |
|
106 | # Add to the list of sources files all the sources in the same | |
107 | # directory that aren't another test |
|
107 | # directory that aren't another test | |
108 | FILE (GLOB currentTestSources |
|
108 | FILE (GLOB currentTestSources | |
109 | ${testDirectory}/*.c |
|
109 | ${testDirectory}/*.c | |
110 | ${testDirectory}/*.cpp |
|
110 | ${testDirectory}/*.cpp | |
111 | ${testDirectory}/*.h) |
|
111 | ${testDirectory}/*.h) | |
112 | LIST (REMOVE_ITEM currentTestSources ${TESTS_SOURCES}) |
|
112 | LIST (REMOVE_ITEM currentTestSources ${TESTS_SOURCES}) | |
113 | LIST (REMOVE_ITEM currentTestSources ${TESTS_HEADERS}) |
|
113 | # LIST (REMOVE_ITEM currentTestSources ${TESTS_HEADERS}) | |
114 |
|
114 | |||
115 | ADD_EXECUTABLE(${testName} ${testFile} ${currentTestSources}) |
|
115 | ADD_EXECUTABLE(${testName} ${testFile} ${currentTestSources}) | |
|
116 | set_property(TARGET ${testName} PROPERTY CXX_STANDARD 14) | |||
|
117 | set_property(TARGET ${testName} PROPERTY CXX_STANDARD_REQUIRED ON) | |||
116 | TARGET_LINK_LIBRARIES( ${testName} ${TEST_LIBRARIES} ) |
|
118 | TARGET_LINK_LIBRARIES( ${testName} ${TEST_LIBRARIES} ) | |
117 | qt5_use_modules(${testName} Test) |
|
119 | qt5_use_modules(${testName} Test) | |
118 |
|
120 | |||
119 | ADD_TEST( NAME ${testName} COMMAND ${testName} ) |
|
121 | ADD_TEST( NAME ${testName} COMMAND ${testName} ) | |
120 |
|
122 | |||
121 | SCIQLOP_COPY_TO_TARGET(RUNTIME ${testName} ${EXTERN_SHARED_LIBRARIES}) |
|
123 | SCIQLOP_COPY_TO_TARGET(RUNTIME ${testName} ${EXTERN_SHARED_LIBRARIES}) | |
122 | ENDFOREACH( testFile ) |
|
124 | ENDFOREACH( testFile ) | |
123 |
|
125 | |||
124 | LIST(APPEND testFilesToFormat ${TESTS_SOURCES}) |
|
126 | LIST(APPEND testFilesToFormat ${TESTS_SOURCES}) | |
125 | LIST(APPEND testFilesToFormat ${TESTS_HEADERS}) |
|
127 | LIST(APPEND testFilesToFormat ${TESTS_HEADERS}) | |
126 | LIST(APPEND FORMATTING_INPUT_FILES ${testFilesToFormat}) |
|
128 | LIST(APPEND FORMATTING_INPUT_FILES ${testFilesToFormat}) | |
127 | SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES) |
|
129 | SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES) | |
128 | ENDIF(BUILD_TESTS) |
|
130 | ENDIF(BUILD_TESTS) | |
129 |
|
131 | |||
130 | # |
|
132 | # | |
131 | # Set the files that must be formatted by clang-format. |
|
133 | # Set the files that must be formatted by clang-format. | |
132 | # |
|
134 | # | |
133 | LIST (APPEND FORMATTING_INPUT_FILES ${MODULE_SOURCES}) |
|
135 | LIST (APPEND FORMATTING_INPUT_FILES ${MODULE_SOURCES}) | |
134 | SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES) |
|
136 | SCIQLOP_SET_TO_PARENT_SCOPE(FORMATTING_INPUT_FILES) | |
135 |
|
137 | |||
136 | # |
|
138 | # | |
137 | # Set the directories that doxygen must browse to generate the |
|
139 | # Set the directories that doxygen must browse to generate the | |
138 | # documentation. |
|
140 | # documentation. | |
139 | # |
|
141 | # | |
140 | # Source directories: |
|
142 | # Source directories: | |
141 | LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/docs") |
|
143 | LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/docs") | |
142 | LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src") |
|
144 | LIST (APPEND DOXYGEN_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src") | |
143 | SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_INPUT_DIRS) |
|
145 | SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_INPUT_DIRS) | |
144 | # Source directories to exclude from the documentation generation |
|
146 | # Source directories to exclude from the documentation generation | |
145 | #LIST (APPEND DOXYGEN_EXCLUDE_PATTERNS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir/*") |
|
147 | #LIST (APPEND DOXYGEN_EXCLUDE_PATTERNS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir/*") | |
146 | SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_EXCLUDE_PATTERNS) |
|
148 | SCIQLOP_SET_TO_PARENT_SCOPE(DOXYGEN_EXCLUDE_PATTERNS) | |
147 |
|
149 | |||
148 | # |
|
150 | # | |
149 | # Set the directories with the sources to analyze and propagate the |
|
151 | # Set the directories with the sources to analyze and propagate the | |
150 | # modification to the parent scope |
|
152 | # modification to the parent scope | |
151 | # |
|
153 | # | |
152 | # Source directories to analyze: |
|
154 | # Source directories to analyze: | |
153 | LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src") |
|
155 | LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/src") | |
154 | LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/tests") |
|
156 | LIST (APPEND ANALYSIS_INPUT_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/tests") | |
155 | SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_INPUT_DIRS) |
|
157 | SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_INPUT_DIRS) | |
156 | # Source directories to exclude from the analysis |
|
158 | # Source directories to exclude from the analysis | |
157 | #LIST (APPEND ANALYSIS_EXCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir") |
|
159 | #LIST (APPEND ANALYSIS_EXCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/path/to/subdir") | |
158 | SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_EXCLUDE_DIRS) |
|
160 | SCIQLOP_SET_TO_PARENT_SCOPE(ANALYSIS_EXCLUDE_DIRS) |
General Comments 0
You need to be logged in to leave comments.
Login now