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