mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 14:19:25 +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
671 B
CMake
20 lines
671 B
CMake
|
|
remove_definitions(-D_WIN32_WINNT=0x502 -DWINVER=0x502)
|
|
add_definitions(-D_WIN32_WINNT=0x600 -DWINVER=0x600)
|
|
|
|
add_definitions(-D_ADVAPI32_)
|
|
spec2def(advapi32_vista.dll advapi32_vista.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
DllMain.c
|
|
RegDeleteTree.c
|
|
RegSetKeyValue.c
|
|
RegLoadMUIString.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/advapi32_vista.def)
|
|
|
|
add_library(advapi32_vista MODULE ${SOURCE})
|
|
set_module_type(advapi32_vista win32dll ENTRYPOINT DllMain 12)
|
|
target_link_libraries(advapi32_vista wine)
|
|
add_importlibs(advapi32_vista advapi32 kernel32 ntdll)
|
|
add_dependencies(advapi32_vista psdk)
|
|
add_cd_file(TARGET advapi32_vista DESTINATION reactos/system32 FOR all)
|