Skip to content

Commit

Permalink
fix cmake warning about newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
scpeters committed May 11, 2020
1 parent 5e99d80 commit 04f84ec
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/sdf/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ set (headers

set (sdf_headers "" CACHE INTERNAL "SDF headers" FORCE)
foreach (hdr ${headers})
APPEND_TO_CACHED_STRING(sdf_headers
"SDF Headers" "#include <sdf/${hdr}>\n")
set(sdf_headers "${sdf_headers}#include <sdf/${hdr}>\n")
endforeach()
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/sdf.hh.in
${CMAKE_CURRENT_BINARY_DIR}/sdf.hh)
Expand Down

0 comments on commit 04f84ec

Please sign in to comment.