Skip to content

Commit

Permalink
Changed tripled to use underscore instead of hyphen
Browse files Browse the repository at this point in the history
Game-Win64-Shipping -> Game_Win64_Shipping.
This was done due to the special meaning of a hyphen in CMake which causes CMake errors on some platforms.
  • Loading branch information
UE4SS committed Sep 26, 2023
1 parent 1358b99 commit 3c51186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ set(BUILD_CONFIGS)
foreach (game_type ${GAME_TYPES})
foreach (platform_type ${PLATFORM_TYPES})
foreach (shipping_type ${SHIPPING_TYPES})
set(triplet ${game_type}-${platform_type}-${shipping_type})
set(triplet ${game_type}_${platform_type}_${shipping_type})
list(APPEND BUILD_CONFIGS ${triplet})

set(definitions
Expand Down

0 comments on commit 3c51186

Please sign in to comment.