reactos/dll/win32/acledit/CMakeLists.txt
Amine Khaldi 4a8860b952 - Correct the entry point for win32dll, win32ocx and cpl module types.
- Fix acledit.

svn path=/branches/cmake-bringup/; revision=49806
2010-11-26 23:57:03 +00:00

22 lines
345 B
CMake

set_unicode()
list(APPEND SOURCE
acledit.c
stubs.c
acledit.rc
${CMAKE_CURRENT_BINARY_DIR}/acledit.def)
add_library(acledit SHARED ${SOURCE})
set_module_type(acledit win32dll)
set_export_spec(acledit acledit.spec)
add_importlibs(acledit msvcrt kernel32 ntdll)
add_cab_target(acledit 1)
add_importlib_target(acledit.spec)