##// END OF EJS Templates
Closed
Pull request !133 Created on Fri, 02 Jun 2017 11:13:15, by
- Remove unused cmake code
- comment omp.h to ensure the compilation from the command line
- Remove Qt_PATH variable from de clang analyzer launcher file since we
Pull request versions not available.
ver Time Author Commit Description
latest r30:67c2ab4a2f13
Remove unused cmake code
latest r29:6d9ae743e935
comment omp.h to ensure the compilation from the command line
latest r28:fa79454f5abc
Remove Qt_PATH variable from de clang analyzer launcher file since we assume using the QT native path.
@@ -6,17 +6,6
6 # As the "NMake Makefiles" forces by default the CMAKE_BUILD_TYPE variable to Debug, SCIQLOP_BUILD_TYPE variable is used to be sure that the debug mode is a user choice
6 # As the "NMake Makefiles" forces by default the CMAKE_BUILD_TYPE variable to Debug, SCIQLOP_BUILD_TYPE variable is used to be sure that the debug mode is a user choice
7 #SET(SCIQLOP_BUILD_TYPE "Release" CACHE STRING "Choose to compile in Debug or Release mode")
7 #SET(SCIQLOP_BUILD_TYPE "Release" CACHE STRING "Choose to compile in Debug or Release mode")
8
8
9 #IF(SCIQLOP_BUILD_TYPE MATCHES "Debug")
10 # MESSAGE (STATUS "Build in Debug")
11 # SET (CMAKE_BUILD_TYPE "Debug")
12 # SET (DEBUG_SUFFIX "d")
13 #ELSE()
14 # MESSAGE (STATUS "Build in Release")
15 # SET (CMAKE_BUILD_TYPE "Release")
16 # SET (SCIQLOP_BUILD_TYPE "Release")
17 # SET (DEBUG_SUFFIX "")
18 #ENDIF()
19
20 IF(CMAKE_BUILD_TYPE MATCHES "Debug")
9 IF(CMAKE_BUILD_TYPE MATCHES "Debug")
21 SET (CMAKE_BUILD_TYPE "Debug")
10 SET (CMAKE_BUILD_TYPE "Debug")
22 SET (DEBUG_SUFFIX "d")
11 SET (DEBUG_SUFFIX "d")
@@ -23,11 +23,11
23 #include <QProcessEnvironment>
23 #include <QProcessEnvironment>
24 #include <QThread>
24 #include <QThread>
25 #include <SqpApplication.h>
25 #include <SqpApplication.h>
26 #include <omp.h>
27 #include <qglobal.h>
26 #include <qglobal.h>
28
27
29 int main(int argc, char *argv[])
28 int main(int argc, char *argv[])
30 {
29 {
30 int ad;
31 SqpApplication a(argc, argv);
31 SqpApplication a(argc, argv);
32 SqpApplication::setOrganizationName("LPP");
32 SqpApplication::setOrganizationName("LPP");
33 SqpApplication::setOrganizationDomain("lpp.fr");
33 SqpApplication::setOrganizationDomain("lpp.fr");
@@ -26,7 +26,7
26 #include <QDateTime>
26 #include <QDateTime>
27 #include <QDir>
27 #include <QDir>
28 #include <QFileDialog>
28 #include <QFileDialog>
29 #include <omp.h>
29 //#include <omp.h>
30 //#include <network/filedownloader.h>
30 //#include <network/filedownloader.h>
31 //#include <qlopdatabase.h>
31 //#include <qlopdatabase.h>
32 //#include <qlopsettings.h>
32 //#include <qlopsettings.h>
@@ -38,7 +38,6
38 //#include "amdatxtcodec.h"
38 //#include "amdatxtcodec.h"
39 //#include <qlopplotmanager.h>
39 //#include <qlopplotmanager.h>
40
40
41
42 MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow)
41 MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow)
43 {
42 {
44 ui->setupUi(this);
43 ui->setupUi(this);
@@ -1,6 +1,4
1
1
2 QT_PATH=".../Qt/5.8/gcc_64/lib/cmake/"
3
4 export CC=/usr/libexec/ccc-analyzer
2 export CC=/usr/libexec/ccc-analyzer
5 export CXX=/usr/libexec/c++-analyzer
3 export CXX=/usr/libexec/c++-analyzer
6 export CCC_CC=clang
4 export CCC_CC=clang
@@ -15,6 +13,6 rm -rf build_clang-analyzer
15 mkdir build_clang-analyzer
13 mkdir build_clang-analyzer
16 cd build_clang-analyzer
14 cd build_clang-analyzer
17
15
18 scan-build cmake -DCMAKE_PREFIX_PATH=$QT_PATH -DCMAKE_CXX_COMPILER=clazy -DENABLE_ANALYSIS=false -DENABLE_CPPCHECK=false -DENABLE_FORMATTING=false -DENABLE_CHECKSTYLE=false -BUILD_DOCUMENTATION=false -BUILD_TESTS=false -DCMAKE_BUILD_TYPE=Debug ../../SCIQLOP-Initialisation/
16 scan-build cmake -DCMAKE_CXX_COMPILER=clazy -DENABLE_ANALYSIS=false -DENABLE_CPPCHECK=false -DENABLE_FORMATTING=false -DENABLE_CHECKSTYLE=false -BUILD_DOCUMENTATION=false -BUILD_TESTS=false -DCMAKE_BUILD_TYPE=Debug ../../SCIQLOP-Initialisation/
19
17
20 scan-build -o clang-analyzer-output make -j2
18 scan-build -o clang-analyzer-output make -j2
General Comments 3
Under Review
author

Auto status change to "Under Review"

Approved
author

Status change > Approved

note
author

Pull request merged and closed