Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/platforms/windows/CMakeLists.txt

21 lines
476 B
Text
Raw Normal View History

2020-08-11 12:07:21 -04:00
include(../../cmake/AddPlatformExecutable.cmake)
add_platform(
MAIN_FILE
main.cpp.in
2020-08-12 22:34:09 -04:00
SRC
${CMAKE_CURRENT_SOURCE_DIR}/file.cpp
${CMAKE_CURRENT_SOURCE_DIR}/windows.cpp
2020-08-11 12:07:21 -04:00
EXECUTABLE_PROPERTIES
LINK_LIBRARIES
Core
GFXVulkan
)
add_custom_target(PlatformWindows_IDE SOURCES
main.cpp.in)
function(add_platform_commands target)
set_target_properties(${target} PROPERTIES
LINK_FLAGS /SUBSYSTEM:WINDOWS)
endfunction()