Move add_subdirectory for shaders and VmaReplay to the end of the file

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

View File

@ -1,11 +1,3 @@
if(VMA_BUILD_EXAMPLE_APP_SHADERS)
add_subdirectory(Shaders)
endif()
if(VMA_BUILD_REPLAY_APP)
add_subdirectory(VmaReplay)
endif()
set(VMA_LIBRARY_SOURCE_FILES
VmaUsage.cpp
)
@ -79,3 +71,11 @@ if (VMA_BUILD_EXAMPLE_APP)
message(STATUS "VmaExample application is not supported to Linux")
endif()
endif()
if(VMA_BUILD_EXAMPLE_APP_SHADERS)
add_subdirectory(Shaders)
endif()
if(VMA_BUILD_REPLAY_APP)
add_subdirectory(VmaReplay)
endif()