mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
b2f8d62cd1
- Add #include <debug.h> and add link to ntdll.dll for debugging. - Add CopyDIBImage helper function. CORE-17969
37 lines
921 B
CMake
37 lines
921 B
CMake
project(MSPAINT)
|
|
|
|
add_definitions(-DINITGUID)
|
|
|
|
list(APPEND SOURCE
|
|
dialogs.cpp
|
|
dib.cpp
|
|
drawing.cpp
|
|
fullscreen.cpp
|
|
history.cpp
|
|
imgarea.cpp
|
|
main.cpp
|
|
miniature.cpp
|
|
mouse.cpp
|
|
palette.cpp
|
|
palettemodel.cpp
|
|
registry.cpp
|
|
scrollbox.cpp
|
|
selection.cpp
|
|
selectionmodel.cpp
|
|
sizebox.cpp
|
|
textedit.cpp
|
|
toolbox.cpp
|
|
toolsettings.cpp
|
|
toolsmodel.cpp
|
|
winproc.cpp
|
|
precomp.h)
|
|
|
|
file(GLOB mspaint_rc_deps icons/*.*)
|
|
add_rc_deps(rsrc.rc ${mspaint_rc_deps})
|
|
add_executable(mspaint ${SOURCE} rsrc.rc)
|
|
set_module_type(mspaint win32gui UNICODE)
|
|
target_link_libraries(mspaint uuid cpprt atl_classes)
|
|
set_target_cpp_properties(mspaint WITH_EXCEPTIONS)
|
|
add_importlibs(mspaint hhctrl comdlg32 shell32 user32 gdi32 advapi32 comctl32 msvcrt kernel32 rpcrt4 shlwapi ntdll)
|
|
add_pch(mspaint precomp.h SOURCE)
|
|
add_cd_file(TARGET mspaint DESTINATION reactos/system32 FOR all)
|