Skip to content

Commit 983d211

Browse files
Merge pull request #82 from vovythevov/UniformizeJsonCMake-FixMacro
BUG: Fix GenerateCLP_FORWARD_PATHS_[BUILD/INSTALL] variable
2 parents 8692b09 + 92f3ad6 commit 983d211

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

GenerateCLP/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,22 +164,22 @@ if(JsonCpp_FOUND)
164164
get_filename_component(json_library_dir ${JsonCpp_LIBRARY} DIRECTORY)
165165
set(json_forward_path_build
166166
"\"${json_library_dir}\" CONFIG_DIR_POST, \\
167-
\"${json_library_dir}\", \\"
167+
\"${json_library_dir}\","
168168
)
169-
set(json_forward_path_install "\"${json_library_dir}\", \\")
169+
set(json_forward_path_install "\"${json_library_dir}\",")
170170
endif()
171171

172172
set(GenerateCLP_FORWARD_DIR_BUILD "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}")
173173
set(GenerateCLP_FORWARD_PATH_BUILD " \\
174174
\".\" CONFIG_DIR_POST, \\
175175
\"${ITK_DIR}/bin\" CONFIG_DIR_POST, \\
176-
${json_forward_path_build}
176+
${json_forward_path_build} \\
177177
\"${ModuleDescriptionParser_DIR}/bin\" CONFIG_DIR_POST \\
178178
")
179179
set(GenerateCLP_FORWARD_PATH_INSTALL " \\
180180
\".\", \\
181181
\"${ITK_DIR}/bin\", \\
182-
${json_forward_path_install}
182+
${json_forward_path_install} \\
183183
\"${ModuleDescriptionParser_DIR}/bin\" \\
184184
")
185185
set(GenerateCLP_FORWARD_EXE GenerateCLP)

0 commit comments

Comments
 (0)