mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
26 lines
428 B
CMake
26 lines
428 B
CMake
|
|
spec2def(main.cpl main.spec)
|
|
|
|
add_library(main SHARED
|
|
keyboard.c
|
|
main.c
|
|
mouse.c
|
|
main.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/main.def)
|
|
|
|
set_module_type(main cpl UNICODE)
|
|
target_link_libraries(main uuid)
|
|
|
|
add_importlibs(main
|
|
msvcrt
|
|
advapi32
|
|
user32
|
|
comctl32
|
|
devmgr
|
|
comdlg32
|
|
shell32
|
|
gdi32
|
|
kernel32)
|
|
|
|
add_pch(main main.h)
|
|
add_cd_file(TARGET main DESTINATION reactos/system32 FOR all)
|