[ROSAPPS]

Add maze and green to build.

svn path=/trunk/; revision=56102
This commit is contained in:
Sylvain Petreolle 2012-03-10 13:36:45 +00:00
parent b8a181d6f3
commit a90cb98c5d
5 changed files with 36 additions and 1 deletions

View file

@ -1 +1,3 @@
add_subdirectory(applications)
add_subdirectory(applications)
add_subdirectory(demos)
add_subdirectory(drivers)

View file

@ -0,0 +1 @@
add_subdirectory(maze)

View file

@ -0,0 +1,12 @@
set_rc_compiler()
add_executable(maze
maze.c
maze.rc)
set_module_type(maze win32gui)
add_importlibs(maze user32 gdi32 msvcrt kernel32)
add_cd_file(TARGET maze DESTINATION reactos/system32 FOR all)

View file

@ -0,0 +1 @@
add_subdirectory(green)

View file

@ -0,0 +1,19 @@
set_rc_compiler()
add_library(green SHARED
createclose.c
dispatch.c
green.c
keyboard.c
misc.c
pnp.c
power.c
screen.c
green.rc)
add_pch(green green.h)
set_module_type(green kernelmodedriver)
add_importlibs(green ntoskrnl hal)
add_cd_file(TARGET green DESTINATION reactos/system32/drivers NO_CAB FOR all)