[CMAKE]
[reactos.git] / base / applications / sndvol32 / CMakeLists.txt
1
2 add_definitions(-D_DLL -D__USE_CRTIMP)
3
4 set_unicode()
5
6 list(APPEND SOURCE
7 dialog.c
8 misc.c
9 mixer.c
10 sndvol32.c
11 sndvol32.rc)
12
13 add_executable(sndvol32 ${CMAKE_CURRENT_BINARY_DIR}/sndvol32_sndvol32.h.gch ${SOURCE})
14
15 add_pch(sndvol32 ${CMAKE_CURRENT_SOURCE_DIR}/sndvol32.h ${SOURCE})
16
17 set_module_type(sndvol32 win32gui)
18 add_importlibs(sndvol32 user32 advapi32 gdi32 comctl32 shell32 winmm msvcrt kernel32 ntdll)
19 add_cd_file(TARGET sndvol32 DESTINATION reactos/system32 FOR all)