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
2020-08-11 12:07:21 -04:00

24 lines
460 B
CMake
Executable file

include(../../cmake/AddPlatformExecutable.cmake)
add_library(WindowsSupport
windows.cpp)
target_link_libraries(WindowsSupport PRIVATE Platform)
add_platform(
MAIN_FILE
main.cpp.in
EXECUTABLE_PROPERTIES
LINK_LIBRARIES
Core
GFXVulkan
FileWindows
LangWindows
WindowsSupport
GFXDummy
GFXOpenGL
Platform
COMPILE_OPTIONS
)
add_custom_target(PlatformWindows_IDE SOURCES
main.cpp.in)