Skip to content

Commit

Permalink
Merge pull request #71 from esohns/main
Browse files Browse the repository at this point in the history
fixed generator expression not correctly handling ',' in data
  • Loading branch information
rpavlik authored Jul 3, 2023
2 parents ff28f41 + c5c5adf commit 998d065
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CreateLaunchers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,9 @@ macro(_launcher_produce_vcproj_user)
file(READ "${_launchermoddir}/perconfig.${VCPROJ_TYPE}.user.in"
_perconfig)

#generator expressions do not play well with ">"
#generator expressions do not play well with ">" and ","
string(REPLACE ">" "$<ANGLE-R>" _perconfig ${_perconfig})
string(REPLACE "," "$<COMMA>" _perconfig ${_perconfig})

set(config_types)
if(CMAKE_CONFIGURATION_TYPES)
Expand Down

0 comments on commit 998d065

Please sign in to comment.