mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
26 lines
709 B
CMake
26 lines
709 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
generate_idl_iids(mstask_local.idl)
|
|
spec2def(mstask.dll mstask.spec)
|
|
|
|
list(APPEND SOURCE
|
|
factory.c
|
|
mstask_main.c
|
|
task.c
|
|
task_scheduler.c
|
|
task_trigger.c
|
|
precomp.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/mstask_local_i.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/mstask_stubs.c)
|
|
|
|
add_library(mstask MODULE
|
|
${SOURCE}
|
|
rsrc.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/mstask.def)
|
|
|
|
set_module_type(mstask win32dll)
|
|
target_link_libraries(mstask uuid wine)
|
|
add_importlibs(mstask ole32 msvcrt kernel32 ntdll)
|
|
add_pch(mstask precomp.h SOURCE)
|
|
add_cd_file(TARGET mstask DESTINATION reactos/system32 FOR all)
|