mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +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.
20 lines
579 B
CMake
20 lines
579 B
CMake
|
|
add_definitions(
|
|
-D__WINESRC__
|
|
-DCOM_NO_WINDOWS_H)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(mlang.dll mlang.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
mlang.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/mlang_stubs.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/mlang.def)
|
|
|
|
add_library(mlang MODULE ${SOURCE} mlang.rc)
|
|
set_module_type(mlang win32dll UNICODE)
|
|
target_link_libraries(mlang uuid wine)
|
|
add_delay_importlibs(mlang oleaut32)
|
|
add_importlibs(mlang gdi32 advapi32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET mlang DESTINATION reactos/system32 FOR all)
|