Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-xt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ag-ohlberger
dune-community
dune-xt
Commits
d37dd952
Commit
d37dd952
authored
6 years ago
by
Tobias Leibner
Browse files
Options
Downloads
Patches
Plain Diff
[cmake] Remove fekete stuff (included in dune-xt-data now)
parent
ac487a81
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cmake/modules/DuneUtils.cmake
+0
-1
0 additions, 1 deletion
cmake/modules/DuneUtils.cmake
cmake/modules/FindFekete.cmake
+0
-44
0 additions, 44 deletions
cmake/modules/FindFekete.cmake
config.h.cmake
+0
-8
0 additions, 8 deletions
config.h.cmake
with
0 additions
and
53 deletions
cmake/modules/DuneUtils.cmake
+
0
−
1
View file @
d37dd952
...
...
@@ -48,7 +48,6 @@ else(MKL_FOUND)
find_package
(
LAPACKE
)
find_package
(
CBLAS
)
endif
(
MKL_FOUND
)
find_package
(
Fekete
)
include
(
DuneXTTesting
)
...
...
This diff is collapsed.
Click to expand it.
cmake/modules/FindFekete.cmake
deleted
100644 → 0
+
0
−
44
View file @
ac487a81
# ~~~
# This file is part of the dune-xt-common project:
# https://github.com/dune-community/dune-xt-common
# Copyright 2009-2018 dune-xt-common developers and contributors. All rights reserved.
# License: Dual licensed as BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
# or GPL-2.0+ (http://opensource.org/licenses/gpl-license)
# with "runtime exception" (http://www.dune-project.org/license.html)
# Authors:
# René Fritze (2018)
# Tobias Leibner (2017 - 2018)
# ~~~
include
(
Hints
)
find_library
(
FEKETE_LIBRARY fekete HINTS
${
lib_hints
}
)
if
(
"
${
FEKETE_LIBRARY
}
"
MATCHES
"FEKETE_LIBRARY-NOTFOUND"
)
message
(
"-- library 'fekete' not found, make sure you have downloaded and build the external libraries!"
)
else
(
"
${
FEKETE_LIBRARY
}
"
MATCHES
"FEKETE_LIBRARY-NOTFOUND"
)
message
(
"-- found fekete library"
)
set
(
FEKETE_LIBRARIES
"
${
FEKETE_LIBRARY
}
"
)
endif
(
"
${
FEKETE_LIBRARY
}
"
MATCHES
"FEKETE_LIBRARY-NOTFOUND"
)
message
(
"-- checking for fekete.hpp header"
)
find_path
(
FEKETE_INCLUDE_DIRS fekete.hpp HINTS
${
include_hints
}
)
if
(
"
${
FEKETE_INCLUDE_DIRS
}
"
MATCHES
"FEKETE_INCLUDE_DIRS-NOTFOUND"
)
message
(
"-- fekete.hpp header not found"
)
else
(
"
${
FEKETE_INCLUDE_DIRS
}
"
MATCHES
"FEKETE_INCLUDE_DIRS-NOTFOUND"
)
message
(
"-- found fekete.hpp header"
)
include_sys_dir
(
${
FEKETE_INCLUDE_DIRS
}
)
endif
(
"
${
FEKETE_INCLUDE_DIRS
}
"
MATCHES
"FEKETE_INCLUDE_DIRS-NOTFOUND"
)
set
(
FEKETE_FOUND 0
)
if
(
NOT
"
${
FEKETE_LIBRARY
}
"
MATCHES
"FEKETE_LIBRARY-NOTFOUND"
)
if
(
NOT
"
${
FEKETE_INCLUDE_DIRS
}
"
MATCHES
"FEKETE_INCLUDE_DIRS-NOTFOUND"
)
set
(
FEKETE_FOUND 1
)
endif
(
NOT
"
${
FEKETE_INCLUDE_DIRS
}
"
MATCHES
"FEKETE_INCLUDE_DIRS-NOTFOUND"
)
endif
(
NOT
"
${
FEKETE_LIBRARY
}
"
MATCHES
"FEKETE_LIBRARY-NOTFOUND"
)
set
(
HAVE_FEKETE
${
FEKETE_FOUND
}
)
# register all FEKETE related flags
if
(
FEKETE_FOUND
)
dune_register_package_flags
(
LIBRARIES
"
${
FEKETE_LIBRARIES
}
"
INCLUDE_DIRS
"
${
FEKETE_INCLUDE_DIRS
}
"
)
endif
()
This diff is collapsed.
Click to expand it.
config.h.cmake
+
0
−
8
View file @
d37dd952
...
...
@@ -56,14 +56,6 @@
#cmakedefine01 HAVE_MATEXP
#endif
#ifndef HAVE_FEKETE
#cmakedefine01 HAVE_FEKETE
#endif
#ifndef HAVE_LEBEDEVDATA
#cmakedefine01 HAVE_LEBEDEVDATA
#endif
#ifndef HAVE_TBB
#cmakedefine01 HAVE_TBB
#endif
...
...
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