mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

- Move some dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49448
17 lines
362 B
CMake
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)
|