mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 00:20:34 +00:00
[ROSAPPS]
Add maze and green to build. svn path=/trunk/; revision=56102
This commit is contained in:
parent
b8a181d6f3
commit
a90cb98c5d
5 changed files with 36 additions and 1 deletions
|
@ -1 +1,3 @@
|
|||
add_subdirectory(applications)
|
||||
add_subdirectory(applications)
|
||||
add_subdirectory(demos)
|
||||
add_subdirectory(drivers)
|
1
rosapps/demos/CMakelists.txt
Normal file
1
rosapps/demos/CMakelists.txt
Normal file
|
@ -0,0 +1 @@
|
|||
add_subdirectory(maze)
|
12
rosapps/demos/maze/CMakeLists.txt
Normal file
12
rosapps/demos/maze/CMakeLists.txt
Normal 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)
|
1
rosapps/drivers/CMakelists.txt
Normal file
1
rosapps/drivers/CMakelists.txt
Normal file
|
@ -0,0 +1 @@
|
|||
add_subdirectory(green)
|
19
rosapps/drivers/green/CMakelists.txt
Normal file
19
rosapps/drivers/green/CMakelists.txt
Normal 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)
|
Loading…
Reference in a new issue