Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PAPPSO
MassChroQ
Commits
2eb346b0
Commit
2eb346b0
authored
Dec 02, 2020
by
Filippo Rusconi
Browse files
Fix the way PappsoMSpp and PappsoMSppWidget are searched for using CMake.
parent
ddb76f3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeStuff/toolchains/unix-toolchain.cmake
View file @
2eb346b0
...
...
@@ -9,10 +9,14 @@ set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES /usr/include)
find_package
(
OdsStream REQUIRED
)
find_package
(
PappsoMSpp REQUIRED
)
find_package
(
PappsoMSpp
COMPONENTS Core Widget
REQUIRED
)
if
(
PappsoMSpp_FOUND
)
find_package
(
PappsoMSppWidget REQUIRED
)
message
(
STATUS
"PappsoMSpp and PappsoMSppWidget were found at:
${
PappsoMSpp_LIBRARY
}
"
)
message
(
STATUS
"Include dir for PappsoMSpp is at:
${
PappsoMSpp_INCLUDE_DIRS
}
"
)
endif
()
find_package
(
QCustomPlot REQUIRED
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment