mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
89271fe38d
Add each win32dll module to livecd and remove global temporary add-on from gcc.cmake. Fix pch use in fmifs. Enable remaining dlls in dll/win32/CMakeLists.txt. svn path=/branches/cmake-bringup/; revision=49230
19 lines
436 B
CMake
19 lines
436 B
CMake
|
|
set_unicode()
|
|
|
|
list(APPEND SOURCE
|
|
acledit.c
|
|
stubs.c
|
|
acledit.rc)
|
|
|
|
spec2def(acledit ${CMAKE_CURRENT_SOURCE_DIR}/acledit.spec ${CMAKE_CURRENT_BINARY_DIR}/acledit.def)
|
|
|
|
add_library(acledit SHARED ${SOURCE})
|
|
|
|
set_module_type(acledit win32dll)
|
|
|
|
target_link_libraries(acledit ${CMAKE_CURRENT_BINARY_DIR}/acledit.def)
|
|
add_importlibs(acledit ntdll)
|
|
|
|
add_dependencies(acledit acledit_def)
|
|
add_livecd_target(acledit reactos/system32)
|