mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
[CMAKE]
* Refer to the PSEH lib using its variable. svn path=/trunk/; revision=57260
This commit is contained in:
@@ -22,7 +22,7 @@ list(APPEND SOURCE
|
||||
add_executable(services ${SOURCE})
|
||||
|
||||
if(NOT MSVC)
|
||||
target_link_libraries(services pseh)
|
||||
target_link_libraries(services ${PSEH_LIB})
|
||||
endif()
|
||||
|
||||
set_module_type(services win32cui UNICODE)
|
||||
|
||||
@@ -2,23 +2,20 @@
|
||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/subsys)
|
||||
|
||||
list(APPEND SOURCE
|
||||
crashdmp.c
|
||||
pagefile.c
|
||||
sminit.c
|
||||
smloop.c
|
||||
smsbapi.c
|
||||
smsessn.c
|
||||
smsubsys.c
|
||||
smutil.c
|
||||
smss.c
|
||||
smss.rc)
|
||||
crashdmp.c
|
||||
pagefile.c
|
||||
sminit.c
|
||||
smloop.c
|
||||
smsbapi.c
|
||||
smsessn.c
|
||||
smsubsys.c
|
||||
smutil.c
|
||||
smss.c
|
||||
smss.rc)
|
||||
|
||||
add_executable(smss WIN32 ${SOURCE})
|
||||
|
||||
target_link_libraries(smss nt pseh smlib)
|
||||
|
||||
target_link_libraries(smss nt ${PSEH_LIB} smlib)
|
||||
add_pch(smss smss.h)
|
||||
|
||||
set_module_type(smss nativecui)
|
||||
add_importlibs(smss ntdll)
|
||||
add_cd_file(TARGET smss DESTINATION reactos/system32 FOR all)
|
||||
|
||||
Reference in New Issue
Block a user