reactos/dll/win32/acledit/CMakeLists.txt
Amine Khaldi 178300c8a6 * Sync to trunk HEAD (r53318).
* Fix PCH use in shell32.

svn path=/branches/shell32_new-bringup/; revision=53319
2011-08-19 17:45:34 +00:00

19 lines
424 B
CMake

set_unicode()
set_rc_compiler()
spec2def(acledit.dll acledit.spec)
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)
add_importlibs(acledit msvcrt kernel32 ntdll)
add_pch(acledit acleditint.h)
add_cd_file(TARGET acledit DESTINATION reactos/system32 FOR all)
add_importlib_target(acledit.spec)