mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +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.
14 lines
382 B
CMake
14 lines
382 B
CMake
|
|
spec2def(joy.cpl joy.spec)
|
|
add_rc_deps(joy.rc ${CMAKE_CURRENT_SOURCE_DIR}/resources/applet.ico)
|
|
|
|
add_library(joy MODULE
|
|
joy.c
|
|
joy.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/joy.def)
|
|
|
|
set_module_type(joy cpl UNICODE)
|
|
target_link_libraries(joy uuid)
|
|
add_importlibs(joy user32 comctl32 ole32 shell32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET joy DESTINATION reactos/system32 FOR all)
|