reactos/base/system/smss/CMakeLists.txt
Jérôme Gardou fd5ef6b1c1 [CMAKE]
- 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
2010-10-30 09:53:53 +00:00

33 lines
641 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys)
list(APPEND SOURCE
client.c
debug.c
init.c
initdosdev.c
initenv.c
initheap.c
initmv.c
initobdir.c
initpage.c
initreg.c
initrun.c
initss.c
initwkdll.c
print.c
smapi.c
smapicomp.c
smapiexec.c
smapiquery.c
smss.c
smss.rc)
add_executable(smss WIN32 ${CMAKE_CURRENT_BINARY_DIR}/smss_smss.h.gch ${SOURCE})
target_link_libraries(smss mingw_common nt smlib)
add_pch(smss ${CMAKE_CURRENT_SOURCE_DIR}/smss.h ${SOURCE})
set_module_type(smss nativecui)
add_importlibs(smss ntdll)
add_cab_target(smss 1)