mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
8db8028cbd
- More work on the base modules. - Fix a typo. - Fix shlwapi and audio_test builds. svn path=/branches/cmake-bringup/; revision=49061
30 lines
571 B
CMake
30 lines
571 B
CMake
|
|
set_unicode()
|
|
|
|
list(APPEND SOURCE
|
|
system.c
|
|
display.c
|
|
sound.c
|
|
music.c
|
|
input.c
|
|
network.c
|
|
help.c
|
|
dxdiag.c
|
|
dxdiag.rc
|
|
ddtest.c
|
|
d3dtest.c
|
|
d3dtest7.c
|
|
d3dtest8.c
|
|
d3dtest9.c)
|
|
|
|
add_executable(dxdiag
|
|
${CMAKE_CURRENT_BINARY_DIR}/dxdiag_precomp.h.gch
|
|
${SOURCE})
|
|
|
|
add_pch(dxdiag ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
|
|
|
|
set_module_type(dxdiag win32gui)
|
|
|
|
target_link_libraries(dxdiag dxguid)
|
|
|
|
add_importlibs(dxdiag user32 advapi32 comctl32 dinput8 setupapi dsound ddraw version gdi32 winmm d3d9 msvcrt kernel32)
|