mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00
16 lines
348 B
CMake
16 lines
348 B
CMake
|
|
set_unicode()
|
|
|
|
# Possible definitions: CARDSTYLE_DEFAULT or CARDSTYLE_BAVARIAN
|
|
add_definitions(-DCARDSTYLE_DEFAULT)
|
|
|
|
add_library(cards SHARED cards.c cards.rc)
|
|
|
|
set_pdef_file(cards cards.pdef)
|
|
add_importlib_target(${CMAKE_CURRENT_BINARY_DIR}/cards.def)
|
|
|
|
set_module_type(cards win32dll)
|
|
|
|
add_importlibs(cards user32 gdi32)
|
|
|
|
add_cab_target(cards 1)
|