mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 08:43:28 +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
18 lines
No EOL
421 B
CMake
18 lines
No EOL
421 B
CMake
|
|
include_directories(include)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/drivers)
|
|
|
|
add_executable(csrss csrss.c csrss.rc)
|
|
|
|
set_module_type(csrss nativecui)
|
|
|
|
target_link_libraries(csrss nt)
|
|
|
|
add_importlibs(csrss ntdll csrsrv)
|
|
|
|
add_dependencies(csrss psdk bugcodes)
|
|
|
|
add_subdirectory(csrsrv)
|
|
add_subdirectory(win32csr)
|
|
add_cab_target(csrss 1) |