-set(CMAKE_C_CREATE_SHARED_LIBRARY "<CMAKE_C_COMPILER> <CMAKE_SHARED_LIBRARY_C_FLAGS> <LINK_FLAGS> <CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS> -o <TARGET> <OBJECTS> <LINK_LIBRARIES> -L${REACTOS_BINARY_DIR}/lib/3rdparty/mingw")
-
add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
-spec2def(compstui ${CMAKE_CURRENT_SOURCE_DIR}/compstui.spec ${CMAKE_CURRENT_BINARY_DIR}/compstui.def)
+spec2def(compstui.dll compstui.spec)
+
+list(APPEND SOURCE
+ compstui_main.c
+ ${CMAKE_CURRENT_BINARY_DIR}/compstui.def)
-add_library(compstui SHARED compstui_main.c)
+add_library(compstui SHARED ${SOURCE})
-set_target_properties(compstui PROPERTIES LINK_FLAGS "-Wl,-entry,_DllMain@12")
+set_module_type(compstui win32dll)
-target_link_libraries(compstui
- ${CMAKE_CURRENT_BINARY_DIR}/compstui.def
- wine
- mingw_common)
+target_link_libraries(compstui wine)
-add_dependencies(compstui compstui_def psdk)
+add_importlibs(compstui msvcrt kernel32 ntdll)
+add_cd_file(TARGET compstui DESTINATION reactos/system32 FOR all)
+add_importlib_target(compstui.spec)