mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-12-29 12:16:08 +00:00
13 lines
593 B
CMake
13 lines
593 B
CMake
# windows specific target definitions
|
|
set_target_properties(sunshine PROPERTIES LINK_SEARCH_START_STATIC 1)
|
|
set(CMAKE_FIND_LIBRARY_SUFFIXES ".dll")
|
|
find_library(ZLIB ZLIB1)
|
|
list(APPEND SUNSHINE_EXTERNAL_LIBRARIES
|
|
Wtsapi32.lib)
|
|
|
|
#WebUI build
|
|
add_custom_target(web-ui ALL
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
COMMENT "Installing NPM Dependencies and Building the Web UI"
|
|
COMMAND cmd /C "npm install && set \"SUNSHINE_SOURCE_ASSETS_DIR=${NPM_SOURCE_ASSETS_DIR}\" && set \"SUNSHINE_ASSETS_DIR=${NPM_ASSETS_DIR}\" && npm run build") # cmake-lint: disable=C0301
|