Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
Kalzium
Commits
c5adadec
Commit
c5adadec
authored
Aug 28, 2022
by
Laurent Montel
Browse files
Exclude AvogadroLibs as it(s not ported to Qt6 yet
parent
2d32c5c8
Pipeline
#224149
passed with stage
in 5 minutes and 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
c5adadec
...
...
@@ -41,7 +41,9 @@ find_package(OpenBabel3 3.1)
if
(
NOT
${
OpenBabel3_FOUND
}
)
find_package
(
OpenBabel2
)
endif
()
if
(
QT_MAJOR_VERSION STREQUAL
"6"
)
find_package
(
AvogadroLibs
)
endif
()
find_package
(
Eigen3 CONFIG
)
find_package
(
OCaml
)
find_package
(
Libfacile
)
...
...
@@ -57,7 +59,11 @@ if(HAVE_OPENBABEL2 OR HAVE_OPENBABEL3)
set
(
HAVE_OPENBABEL 1
)
endif
()
set
(
HAVE_EIGEN
${
EIGEN3_FOUND
}
)
set
(
HAVE_AVOGADRO
${
AvogadroLibs_FOUND
}
)
if
(
QT_MAJOR_VERSION STREQUAL
"6"
)
set
(
HAVE_AVOGADRO false
)
else
()
set
(
HAVE_AVOGADRO
${
AvogadroLibs_FOUND
}
)
endif
()
if
(
HAVE_OPENBABEL3
)
set
(
OPENBABEL_INCLUDE_DIR
${
OpenBabel3_INCLUDE_DIRS
}
)
...
...
Tuomas Nurmi
@nurmi
mentioned in merge request
!25 (merged)
·
Oct 27, 2022
mentioned in merge request
!25 (merged)
mentioned in merge request !25
Toggle commit list
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment