reactos/dll/win32/batt/CMakeLists.txt
Amine Khaldi 67948fbc90 [CMAKE]
- Move some dlls with no stubs into using def files instead of spec files.

svn path=/branches/cmake-bringup/; revision=49448
2010-11-02 18:19:44 +00:00

15 lines
248 B
CMake

set_unicode()
add_library(batt SHARED batt.c batt.rc batt.def)
if(NOT MSVC)
set_source_files_properties(batt.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
set_module_type(batt win32dll)
add_importlibs(batt kernel32)
add_cab_target(batt 1)