Replace add_definitions with add_compile_definitions

This commit is contained in:
Johannes Schneider 2021-05-31 23:36:57 +02:00
parent a3078999ea
commit 696ecd674d
No known key found for this signature in database
GPG Key ID: 630166982479CCF3

View File

@ -36,7 +36,7 @@ if (VMA_BUILD_EXAMPLE_APP)
# Visual Studio specific settings
if(${CMAKE_GENERATOR} MATCHES "Visual Studio.*")
# Use Unicode instead of multibyte set
add_definitions(-DUNICODE -D_UNICODE)
add_compile_definitions(UNICODE _UNICODE)
# Set VmaExample as startup project
set_property(DIRECTORY ${PROJECT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT "VmaExample")