Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cmake/install-config.cmake.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@PACKAGE_INIT@

find_dependency(fmt REQUIRED)
find_dependency(pasio-utility REQUIRED)
find_dependency(pasio-core REQUIRED)
find_package(Python REQUIRED)
find_dependency(pybind11 REQUIRED)
find_dependency(Boost REQUIRED)

include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
check_required_components(@PROJECT_NAME@)
5 changes: 1 addition & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ def fmt():
return ["fmt::fmt"]

project_components = [
{
"target": "utility",
},
{
"target": "core",
"lib": "core",
Expand Down Expand Up @@ -72,7 +69,7 @@ def set_version(self):
def requirements(self):
self.requires("boost/1.86.0")
self.requires("pybind11/2.13.6")
self.test_requires("catch2/3.5.3")
self.test_requires("catch2/3.8.0")

def config_options(self):
if self.settings.os == "Windows":
Expand Down
2 changes: 1 addition & 1 deletion core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ target_configure_linker(${PROJECT_NAME})

# ---- Collect all sources for static analysis

set(ALL_SOURCE_FILES ${LIBRARY_INCLUDES})
set(ALL_SOURCE_FILES ${LIBRARY_INCLUDES} ${LIBRARY_SOURCES})

# ---- Clang-tidy target

Expand Down
5 changes: 3 additions & 2 deletions core/cmake/install-config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

include(CMakeFindDependencyMacro)

find_dependency(fmt REQUIRED)
find_dependency(pasio-utility REQUIRED)
find_package(Python REQUIRED)
find_dependency(Boost REQUIRED)
find_dependency(Pybind11 REQUIRED)

include(${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake)
check_required_components(@PROJECT_NAME@)
Loading