reactos/dll/win32/powrprof/CMakeLists.txt
Amine Khaldi 79b73c825d [CMAKE]
- Move more dlls with no stubs into using def files instead of spec files.

svn path=/branches/cmake-bringup/; revision=49449
2010-11-02 19:58:29 +00:00

17 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)