mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
20 lines
459 B
CMake
20 lines
459 B
CMake
|
|
include_directories(${SHIMLIB_DIR})
|
|
|
|
spec2def(acgenral.dll genral.spec)
|
|
|
|
list(APPEND SOURCE
|
|
ignoredbgout.c
|
|
ignorefreelib.c
|
|
main.c
|
|
themes.c
|
|
genral.spec)
|
|
|
|
add_library(acgenral SHARED
|
|
${SOURCE}
|
|
${CMAKE_CURRENT_BINARY_DIR}/acgenral.def)
|
|
|
|
set_module_type(acgenral win32dll)
|
|
target_link_libraries(acgenral shimlib)
|
|
add_importlibs(acgenral uxtheme msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET acgenral DESTINATION reactos/AppPatch FOR all)
|