mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
fd5ef6b1c1
- add macros add_cab and add_cab_target to add files to reactos.dff - add bootcd target - make use of these macros to create bootcd and livecd Bootcd works and install things, but 2nd stage fails booting. We need debug symbols!!! svn path=/branches/cmake-bringup/; revision=49347
23 lines
543 B
CMake
23 lines
543 B
CMake
|
|
set_unicode()
|
|
|
|
list(APPEND SOURCE
|
|
authz.c
|
|
clictx.c
|
|
resman.c
|
|
authz.rc)
|
|
|
|
spec2def(authz ${CMAKE_CURRENT_SOURCE_DIR}/authz.spec ${CMAKE_CURRENT_BINARY_DIR}/authz.def)
|
|
|
|
add_library(authz SHARED
|
|
${CMAKE_CURRENT_BINARY_DIR}/authz_precomp.h.gch
|
|
${SOURCE})
|
|
|
|
set_module_type(authz win32dll)
|
|
|
|
target_link_libraries(authz ${CMAKE_CURRENT_BINARY_DIR}/authz.def)
|
|
|
|
add_pch(authz ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
|
|
add_importlibs(authz advapi32 kernel32 ntdll)
|
|
add_dependencies(authz authz_def)
|
|
add_cab_target(authz 1)
|