fixed indentation for cmake files

(cherry picked from commit a46d047f94)
This commit is contained in:
ipriver
2020-06-22 15:27:03 +03:00
committed by Shauren
parent c776218cb5
commit bde36062b7
30 changed files with 195 additions and 195 deletions

View File

@@ -13,7 +13,7 @@ set(PRIVATE_SOURCES
TileAssembler.h
VMapAssembler.cpp)
if (WIN32)
if(WIN32)
list(APPEND PRIVATE_SOURCES ${sources_windows})
endif()
@@ -32,8 +32,8 @@ set_target_properties(vmap4assembler
FOLDER
"tools")
if( UNIX )
if(UNIX)
install(TARGETS vmap4assembler DESTINATION bin)
elseif( WIN32 )
elseif(WIN32)
install(TARGETS vmap4assembler DESTINATION "${CMAKE_INSTALL_PREFIX}")
endif()