mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
580574fba8
- Sound is disabled by default - Use WinXP-compatible registry key and value
17 lines
479 B
CMake
17 lines
479 B
CMake
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
list(APPEND SOURCE
|
|
main.c
|
|
dialog.c
|
|
main.h)
|
|
|
|
file(GLOB winmine_rc_deps rc/*.*)
|
|
add_rc_deps(rsrc.rc ${winmine_rc_deps})
|
|
add_executable(winmine ${SOURCE} rsrc.rc)
|
|
set_module_type(winmine win32gui UNICODE)
|
|
target_link_libraries(winmine wine)
|
|
add_importlibs(winmine user32 gdi32 advapi32 shell32 winmm msvcrt kernel32 ntdll)
|
|
add_pch(winmine main.h SOURCE)
|
|
add_cd_file(TARGET winmine DESTINATION reactos/system32 FOR all)
|