mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00

- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49449
16 lines
349 B
CMake
16 lines
349 B
CMake
|
|
set_unicode()
|
|
|
|
add_library(powrprof SHARED powrprof.c powrprof.rc powrprof.def)
|
|
|
|
if(NOT MSVC)
|
|
set_source_files_properties(powrprof.def PROPERTIES EXTERNAL_OBJECT TRUE)
|
|
endif()
|
|
|
|
set_module_type(powrprof win32dll)
|
|
|
|
target_link_libraries(powrprof wine)
|
|
|
|
add_importlibs(powrprof advapi32 user32 comctl32 kernel32 ntdll)
|
|
|
|
add_cab_target(powrprof 1)
|