Skip to content

Commit

Permalink
build: Fix CMake source file extensions must be explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
mloskot committed Jun 27, 2022
1 parent 156dd29 commit 1049c07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/extension/toolbox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ foreach(_name
set(_target test_ext_toolbox_${_name})

add_executable(${_target} "")
target_sources(${_target} PRIVATE ${_name})
target_sources(${_target} PRIVATE "${_name}.cpp")
target_link_libraries(${_target}
PRIVATE
gil_compile_options
Expand All @@ -50,7 +50,7 @@ foreach(_name
set(_target test_ext_toolbox_${_name})

add_executable(${_target} "")
target_sources(${_target} PRIVATE ${_name})
target_sources(${_target} PRIVATE "${_name}.cpp")
target_link_libraries(${_target}
PRIVATE
gil_compile_options
Expand Down

0 comments on commit 1049c07

Please sign in to comment.