2019-04-09 06:28:11 +00:00
|
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(platform_Windows LANGUAGES C)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${PROJECT_SOURCE_DIR}/include
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(platform_Windows STATIC
|
|
|
|
src/platform.c
|
2020-08-11 02:22:22 +00:00
|
|
|
src/service.c
|
2019-04-10 11:07:56 +00:00
|
|
|
src/mousehook.c
|
2019-04-09 06:28:11 +00:00
|
|
|
)
|
|
|
|
|
2021-01-14 23:55:36 +00:00
|
|
|
# allow use of functions for Windows Vista or later
|
|
|
|
add_definitions(-D _WIN32_WINNT=0x6000)
|
|
|
|
|
2019-04-09 06:28:11 +00:00
|
|
|
add_subdirectory("capture")
|
|
|
|
|
2019-05-22 04:59:19 +00:00
|
|
|
FIND_PROGRAM(WINDRES_EXECUTABLE NAMES "x86_64-w64-mingw32-windres" "windres.exe" DOC "windres executable")
|
2019-04-10 11:07:56 +00:00
|
|
|
ADD_CUSTOM_COMMAND(TARGET platform_Windows POST_BUILD
|
|
|
|
WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}"
|
|
|
|
COMMAND ${WINDRES_EXECUTABLE} -i resource.rc -o "${PROJECT_BINARY_DIR}/resource.o"
|
|
|
|
VERBATIM
|
|
|
|
)
|
|
|
|
|
2019-04-09 06:28:11 +00:00
|
|
|
target_link_libraries(platform_Windows
|
2019-04-10 11:07:56 +00:00
|
|
|
"${PROJECT_BINARY_DIR}/resource.o"
|
2019-04-11 01:03:30 +00:00
|
|
|
lg_common
|
2019-04-09 06:28:11 +00:00
|
|
|
capture
|
2020-08-11 02:22:22 +00:00
|
|
|
|
|
|
|
userenv
|
|
|
|
wtsapi32
|
2020-08-11 03:15:18 +00:00
|
|
|
psapi
|
2019-04-09 06:28:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(platform_Windows
|
|
|
|
PRIVATE
|
|
|
|
src
|
|
|
|
)
|
2020-08-12 11:50:48 +00:00
|
|
|
|
|
|
|
# these are for the nsis installer generator
|
|
|
|
configure_file("${PROJECT_SOURCE_DIR}/installer.nsi" "${PROJECT_BINARY_DIR}/installer.nsi" COPYONLY)
|
|
|
|
configure_file("${PROJECT_TOP}/resources/icon.ico" "${PROJECT_BINARY_DIR}/icon.ico" COPYONLY)
|
|
|
|
configure_file("${PROJECT_TOP}/LICENSE" "${PROJECT_BINARY_DIR}/LICENSE.txt" COPYONLY)
|