mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
75a7cf89a7
On-Screen Keyboard provides a mechanism to launch the application only once, to avoid multiple entry point instances. Such mechanism is based upon mutex objects, although it could happen that the program may end up creating two or more mutexes (a race condition). CORE-15877
7 lines
309 B
CMake
7 lines
309 B
CMake
|
|
file(GLOB osk_rc_deps res/*.*)
|
|
add_rc_deps(rsrc.rc ${osk_rc_deps})
|
|
add_executable(osk main.c settings.c rsrc.rc)
|
|
set_module_type(osk win32gui UNICODE)
|
|
add_importlibs(osk comdlg32 winmm shell32 user32 gdi32 advapi32 comctl32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET osk DESTINATION reactos/system32 FOR all)
|