Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
i2MassChroQ
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
PAPPSO
i2MassChroQ
Commits
38e0dc7d
Commit
38e0dc7d
authored
7 years ago
by
Langella Olivier
Browse files
Options
Downloads
Patches
Plain Diff
fix compilation problems under linux
parent
644ef970
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
src/CMakeLists.txt
+9
-3
9 additions, 3 deletions
src/CMakeLists.txt
with
10 additions
and
4 deletions
CMakeLists.txt
+
1
−
1
View file @
38e0dc7d
...
...
@@ -44,7 +44,7 @@ if (CMAKE_VERSION VERSION_LESS "3.1")
set
(
CMAKE_CXX_FLAGS
"-std=gnu++11
${
CMAKE_CXX_FLAGS
}
"
)
endif
()
else
()
set
(
CMAKE_CXX_STANDARD 1
1
)
set
(
CMAKE_CXX_STANDARD 1
4
)
endif
()
#depending on libpappsomspp version :
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
9
−
3
View file @
38e0dc7d
...
...
@@ -16,7 +16,11 @@ SET(xtpcpp_RCCS xtpcpp.qrc)
FIND_PACKAGE
(
Qt5 COMPONENTS Core Gui Svg Xml PrintSupport REQUIRED
)
QT5_ADD_RESOURCES
(
xtpcpp_RCC_SRCS
${
xtpcpp_RCCS
}
)
FIND_PACKAGE
(
QCustomPlot REQUIRED
)
if
(
QCustomPlot_FOUND
)
else
(
QCustomPlot_FOUND
)
FIND_PACKAGE
(
QCustomPlot REQUIRED
)
endif
(
QCustomPlot_FOUND
)
FIND_PACKAGE
(
Odsstream REQUIRED
)
#ODSSTREAM_INCLUDE_DIR AND ODSSTREAM_LIBRARY
#SET (ODSSTREAM_DIR "/home/olivier/eclipse/git/libodsstream")
#SET (ODSSTREAM_INCLUDE_DIR "${ODSSTREAM_DIR}/src")
...
...
@@ -29,8 +33,10 @@ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Xml_EXECUTABLE_COMPILE_FLAGS} ${Qt5
#sudo apt-get install libpappsomspp-dev
if
(
PAPPSOMSPP_QT5_FOUND
)
else
(
PAPPSOMSPP_QT5_FOUND
)
MESSAGE
(
"looking for PAPPSOms++ library"
)
FIND_PACKAGE
(
Pappsomspp REQUIRED
)
endif
(
PAPPSOMSPP_QT5_FOUND
)
IF
(
PAPPSOMSPP_QT5_FOUND
)
ELSE
(
PAPPSOMSPP_QT5_FOUND
)
MESSAGE
(
"PAPPSOms++ library not found"
)
...
...
@@ -163,6 +169,7 @@ SET(XTPCPP_SRCS
./gui/waiting_message_dialog/waitingmessagedialog.cpp
./gui/widgets/automatic_filter_widget/automaticfilterwidget.cpp
./gui/widgets/contaminant_widget/contaminantwidget.cpp
./gui/widgets/massitemdelegate.cpp
./gui/xic_view/xic_box/xicbox.cpp
./gui/xic_view/xicwindow.cpp
./gui/xic_view/xicworkerthread.cpp
...
...
@@ -205,8 +212,7 @@ MESSAGE("XTPCPP_SRCS: ${XTPCPP_SRCS}")
ADD_EXECUTABLE
(
xtpcpp main.cpp
${
CPP_FILES
}
${
XTPCPP_SRCS
}
${
GUI_UI_HDRS
}
${
xtpcpp_RCC_SRCS
}
)
target_include_directories
(
xtpcpp PUBLIC
${
Pwiz_INCLUDE_DIR
}
${
PAPPSOMSPP_INCLUDE_DIR
}
${
ODSSTREAM_INCLUDE_DIR
}
${
CMAKE_CURRENT_SOURCE_DIR
}
${
CMAKE_CURRENT_BINARY_DIR
}
)
target_include_directories
(
xtpcpp PUBLIC
${
Pwiz_INCLUDE_DIR
}
${
PAPPSOMSPP_INCLUDE_DIR
}
${
ODSSTREAM_INCLUDE_DIR
}
)
target_compile_definitions
(
xtpcpp PUBLIC
${
QT_DEFINITIONS
}
)
SET_TARGET_PROPERTIES
(
xtpcpp
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment