Skip to content

Commit 6f127cb

Browse files
committed
#25 fixes after resctructuring
1 parent 818902f commit 6f127cb

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ project(
1010
LANGUAGES CXX)
1111

1212
# versioning
13-
configure_file(
14-
${CMAKE_SOURCE_DIR}/version.h.in
15-
${CMAKE_BINARY_DIR}/generated/version.h
16-
)
13+
configure_file(${CMAKE_SOURCE_DIR}/version.h.in ${CMAKE_BINARY_DIR}/generated/version.h)
1714

1815
message(STATUS "CMake version: ${CMAKE_VERSION}")
1916
message(STATUS "C++ standard: ${CMAKE_CXX_STANDARD}")

src/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
add_library(capable_template INTERFACE)
22

33
target_include_directories(capable_template INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
4-
${CMAKE_BINARY_DIR}/generated
5-
)
4+
${CMAKE_BINARY_DIR}/generated)
65

76
target_sources(capable_template INTERFACE template_class.cpp)
87

0 commit comments

Comments
 (0)