Skip to content

Commit aeed4ea

Browse files
committed
Fix
1 parent ffab3ed commit aeed4ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2-
2+
set(CMAKE_VERIFY_INTERFACE_HEADER_SETS OFF)
33
cmake_minimum_required(VERSION 3.25)
44

55
project(
@@ -30,15 +30,15 @@ include(CTest)
3030
add_library(beman.transform_join_view INTERFACE)
3131
add_library(beman::transform_join_view ALIAS beman.transform_join_view)
3232

33-
target_sources(beman.transform_join_view
33+
target_sources(
34+
beman.transform_join_view
3435
INTERFACE
3536
FILE_SET HEADERS
36-
BASE_DIRS include
37+
BASE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/include"
3738
FILES
38-
beman/transform_join_view/identity.hpp
39+
"${CMAKE_CURRENT_SOURCE_DIR}/include/beman/transform_join_view/identity.hpp"
3940
)
4041

41-
4242
target_compile_features(beman.transform_join_view INTERFACE cxx_std_20)
4343

4444
if(BEMAN_TRANSFORM_JOIN_VIEW_BUILD_TESTS)

0 commit comments

Comments
 (0)