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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

cmake_minimum_required(VERSION 3.25...4.2)

project(DDC VERSION 0.13.0 LANGUAGES CXX)
project(DDC VERSION 0.14.0 LANGUAGES CXX)

# List of options

Expand Down
6 changes: 3 additions & 3 deletions install_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ endforeach()
# and the additivity of DDC components.

# Find DDC without components, only core will be defined
find_package(DDC 0.13 REQUIRED)
find_package(DDC 0.14 REQUIRED)

# Targets that must exist
foreach(target IN ITEMS DDC::core)
Expand Down Expand Up @@ -80,7 +80,7 @@ foreach(
endforeach()

# Find again DDC with fft component, core and fft will be defined
find_package(DDC 0.13 REQUIRED COMPONENTS fft)
find_package(DDC 0.14 REQUIRED COMPONENTS fft)

# Targets that must exist
foreach(target IN ITEMS DDC::core DDC::fft)
Expand Down Expand Up @@ -108,7 +108,7 @@ foreach(
endforeach()

# Find again DDC with pdi and splines components, all components will be defined
find_package(DDC 0.13 REQUIRED COMPONENTS pdi splines)
find_package(DDC 0.14 REQUIRED COMPONENTS pdi splines)

# Targets that must exist
foreach(target IN ITEMS DDC::core DDC::fft DDC::pdi DDC::splines)
Expand Down
2 changes: 1 addition & 1 deletion install_test/subdir/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
#
# SPDX-License-Identifier: MIT

find_package(DDC 0.13 REQUIRED COMPONENTS fft pdi splines)
find_package(DDC 0.14 REQUIRED COMPONENTS fft pdi splines)
Loading