reactos/dll/win32/cards/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

17 lines
362 B
CMake

set_unicode()
# Possible definitions: CARDSTYLE_DEFAULT or CARDSTYLE_BAVARIAN
add_definitions(-DCARDSTYLE_DEFAULT)
add_library(cards SHARED cards.c cards.rc cards.def)
if(NOT MSVC)
set_source_files_properties(cards.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
set_module_type(cards win32dll)
add_importlibs(cards user32 gdi32)
add_cab_target(cards 1)