mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
12 lines
323 B
CMake
12 lines
323 B
CMake
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_executable(winmine
|
|
main.c
|
|
dialog.c
|
|
rsrc.rc)
|
|
|
|
set_module_type(winmine win32gui)
|
|
target_link_libraries(winmine wine)
|
|
add_importlibs(winmine user32 gdi32 advapi32 shell32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET winmine DESTINATION reactos/system32 FOR all)
|