forked from Benny44/LADEL
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
87 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
@PACKAGE_INIT@ | ||
|
||
include ("${CMAKE_CURRENT_LIST_DIR}/ladelTargets.cmake") | ||
include ("${CMAKE_CURRENT_LIST_DIR}/LADELTargets.cmake") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import os | ||
|
||
from conan import ConanFile | ||
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout | ||
from conan.tools.build import can_run | ||
|
||
|
||
class LADELRecipe(ConanFile): | ||
name = "ladel" | ||
version = "0.0.1" | ||
|
||
# Optional metadata | ||
license = "LGPLv3" | ||
author = "Pieter P <[email protected]>" | ||
url = "https://github.com/kul-optec/LADEL" | ||
description = "Quasidefinite LDL factorization package with (symmetric) row/column adds and deletes" | ||
topics = ("LDL", "LDLT", "linear-algebra") | ||
|
||
# Binary configuration | ||
settings = "os", "compiler", "build_type", "arch" | ||
options = { | ||
"shared": [True, False], | ||
"fPIC": [True, False], | ||
} | ||
default_options = { | ||
"shared": False, | ||
"fPIC": True, | ||
} | ||
|
||
# Sources are located in the same place as this recipe, copy them to the recipe | ||
exports_sources = ( | ||
"CMakeLists.txt", | ||
"LADEL/*", | ||
"thirdparty/*", | ||
"test/*", | ||
"LICENSE", | ||
"README.md", | ||
) | ||
|
||
generators = ("CMakeDeps",) | ||
|
||
def requirements(self): | ||
self.test_requires("gtest/1.11.0") | ||
|
||
def config_options(self): | ||
if self.settings.get_safe("os") == "Windows": | ||
self.options.rm_safe("fPIC") | ||
|
||
def layout(self): | ||
cmake_layout(self) | ||
|
||
def generate(self): | ||
tc = CMakeToolchain(self) | ||
if can_run(self): | ||
tc.variables["LADEL_FORCE_TEST_DISCOVERY"] = True | ||
tc.generate() | ||
|
||
def build(self): | ||
cmake = CMake(self) | ||
cmake.configure() | ||
cmake.build() | ||
cmake.test() | ||
|
||
def package(self): | ||
cmake = CMake(self) | ||
cmake.install() | ||
|
||
def package_info(self): | ||
self.cpp_info.set_property("cmake_find_mode", "none") | ||
self.cpp_info.builddirs.append(os.path.join("lib", "cmake", "LADEL")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters