[ROSAPPS] Add sysutils/utils folder completely (except rosperf for now) / Fix two...
authorDaniel Reimer <reimer.daniel@freenet.de>
Sun, 26 Apr 2015 14:11:18 +0000 (14:11 +0000)
committerDaniel Reimer <reimer.daniel@freenet.de>
Sun, 26 Apr 2015 14:11:18 +0000 (14:11 +0000)
svn path=/trunk/; revision=67437

15 files changed:
rosapps/applications/devutils/symdump/CMakeLists.txt
rosapps/applications/net/ncftp/CMakeLists.txt
rosapps/applications/net/roshttpd/CMakeLists.txt
rosapps/applications/sysutils/utils/CMakeLists.txt
rosapps/applications/sysutils/utils/binpatch/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/driver/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/driver/load/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/driver/unload/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/infinst/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/nts2w32err/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/objdir/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/partinfo/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/rosperf/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/stats/CMakeLists.txt [new file with mode: 0644]
rosapps/applications/sysutils/utils/tickcount/CMakeLists.txt [new file with mode: 0644]

index 8ab9805..fde9713 100644 (file)
@@ -4,5 +4,5 @@ add_executable(symdump symdump.c)
 set_module_type(symdump win32cui)
 target_link_libraries(symdump wine)
 add_importlibs(symdump dbghelp shlwapi msvcrt kernel32)
-add_compile_flags("-Wno-error=unused-but-set-variable")
+add_compile_flags("-Wno-unused-but-set-variable")
 add_cd_file(TARGET symdump DESTINATION reactos/system32 FOR all)
index 71bb206..d3f3a13 100644 (file)
@@ -72,4 +72,4 @@ add_executable(ncftp ${SOURCE} ncftp.rc)
 set_module_type(ncftp win32cui)
 add_target_compile_flags(ncftp "-Wno-unused-but-set-variable -Wno-implicit-function-declaration -Wno-format-extra-args")
 add_importlibs(ncftp advapi32 user32 ws2_32 msvcrt kernel32)
-add_cd_file(TARGET ncftp DESTINATION reactos FOR all)
+add_cd_file(TARGET ncftp DESTINATION reactos/system32 FOR all)
index 90268be..72e02da 100644 (file)
@@ -16,4 +16,4 @@ list(APPEND SOURCE
 add_executable(roshttpd ${SOURCE} common/roshttpd.rc)
 set_module_type(roshttpd win32cui)
 add_importlibs(roshttpd user32 ws2_32 msvcrt kernel32)
-add_cd_file(TARGET roshttpd DESTINATION reactos FOR all)
+add_cd_file(TARGET roshttpd DESTINATION reactos/system32 FOR all)
index d8d6917..d8d987a 100644 (file)
@@ -1,15 +1,11 @@
-#add_subdirectory(binpatch)
+add_subdirectory(binpatch)
 add_subdirectory(cat)
-#add_subdirectory(driver)
-#add_subdirectory(infinst)
-#add_subdirectory(nts2w32err)
-#add_subdirectory(objdir)
-#add_subdirectory(partinfo)
-#add_subdirectory(pice)
-#add_subdirectory(pnpdump)
+add_subdirectory(driver)
+add_subdirectory(infinst)
+add_subdirectory(nts2w32err)
+add_subdirectory(objdir)
+add_subdirectory(partinfo)
 add_subdirectory(ps)
 #add_subdirectory(rosperf)
-#add_subdirectory(sdkparse)
-#add_subdirectory(stats)
-#add_subdirectory(theme)
-#add_subdirectory(tickcount)
+add_subdirectory(stats)
+add_subdirectory(tickcount)
diff --git a/rosapps/applications/sysutils/utils/binpatch/CMakeLists.txt b/rosapps/applications/sysutils/utils/binpatch/CMakeLists.txt
new file mode 100644 (file)
index 0000000..07c3464
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(binpatch patch.c)
+set_module_type(binpatch win32cui)
+add_importlibs(binpatch ntdll msvcrt kernel32)
+add_cd_file(TARGET binpatch DESTINATION reactos/bin FOR all)
diff --git a/rosapps/applications/sysutils/utils/driver/CMakeLists.txt b/rosapps/applications/sysutils/utils/driver/CMakeLists.txt
new file mode 100644 (file)
index 0000000..4edf70a
--- /dev/null
@@ -0,0 +1,2 @@
+add_subdirectory(load)
+add_subdirectory(unload)
diff --git a/rosapps/applications/sysutils/utils/driver/load/CMakeLists.txt b/rosapps/applications/sysutils/utils/driver/load/CMakeLists.txt
new file mode 100644 (file)
index 0000000..99ad4c7
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(load load.c)
+set_module_type(load win32cui UNICODE)
+add_importlibs(load ntdll user32 msvcrt kernel32)
+add_cd_file(TARGET load DESTINATION reactos/bin FOR all)
diff --git a/rosapps/applications/sysutils/utils/driver/unload/CMakeLists.txt b/rosapps/applications/sysutils/utils/driver/unload/CMakeLists.txt
new file mode 100644 (file)
index 0000000..062de30
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(unload unload.c)
+set_module_type(unload win32cui UNICODE)
+add_importlibs(unload ntdll user32 msvcrt kernel32)
+add_cd_file(TARGET unload DESTINATION reactos/bin FOR all)
diff --git a/rosapps/applications/sysutils/utils/infinst/CMakeLists.txt b/rosapps/applications/sysutils/utils/infinst/CMakeLists.txt
new file mode 100644 (file)
index 0000000..a91d3eb
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(infinst infinst.c)
+set_module_type(infinst win32cui)
+add_importlibs(infinst ntdll user32 setupapi comdlg32 msvcrt kernel32)
+add_cd_file(TARGET infinst DESTINATION reactos/bin FOR all)
diff --git a/rosapps/applications/sysutils/utils/nts2w32err/CMakeLists.txt b/rosapps/applications/sysutils/utils/nts2w32err/CMakeLists.txt
new file mode 100644 (file)
index 0000000..5a370b5
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(nts2w32err nts2w32err.c)
+set_module_type(nts2w32err win32cui)
+add_importlibs(nts2w32err ntdll msvcrt kernel32)
+add_cd_file(TARGET nts2w32err DESTINATION reactos/bin FOR all)
diff --git a/rosapps/applications/sysutils/utils/objdir/CMakeLists.txt b/rosapps/applications/sysutils/utils/objdir/CMakeLists.txt
new file mode 100644 (file)
index 0000000..6590d20
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(objdir objdir.c)
+set_module_type(objdir win32cui)
+add_importlibs(objdir ntdll msvcrt kernel32)
+add_cd_file(TARGET objdir DESTINATION reactos/bin FOR all)
diff --git a/rosapps/applications/sysutils/utils/partinfo/CMakeLists.txt b/rosapps/applications/sysutils/utils/partinfo/CMakeLists.txt
new file mode 100644 (file)
index 0000000..a3da636
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(partinfo partinfo.c)
+set_module_type(partinfo win32cui)
+add_importlibs(partinfo ntdll msvcrt kernel32)
+add_cd_file(TARGET partinfo DESTINATION reactos/bin FOR all)
diff --git a/rosapps/applications/sysutils/utils/rosperf/CMakeLists.txt b/rosapps/applications/sysutils/utils/rosperf/CMakeLists.txt
new file mode 100644 (file)
index 0000000..0bda350
--- /dev/null
@@ -0,0 +1,16 @@
+
+list(APPEND SOURCE
+    rosperf.c
+    lines.c
+    fill.c
+    scroll.c
+    text.c
+    alphablend.c
+    testlist.c
+    gradient.c)
+
+add_executable(rosperf ${SOURCE} rosperf.rc)
+set_module_type(rosperf win32cui UNICODE)
+add_target_compile_flags(rosperf "-Wno-unused-but-set-variable")
+add_importlibs(rosperf version msimg32 gdi32 shell32 advapi32 user32 ntdll msvcrt kernel32)
+add_cd_file(TARGET rosperf DESTINATION reactos/system32 FOR all)
diff --git a/rosapps/applications/sysutils/utils/stats/CMakeLists.txt b/rosapps/applications/sysutils/utils/stats/CMakeLists.txt
new file mode 100644 (file)
index 0000000..8480d34
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(stats stats.c)
+set_module_type(stats win32cui UNICODE)
+add_importlibs(stats ntdll msvcrt kernel32)
+add_cd_file(TARGET stats DESTINATION reactos/bin FOR all)
diff --git a/rosapps/applications/sysutils/utils/tickcount/CMakeLists.txt b/rosapps/applications/sysutils/utils/tickcount/CMakeLists.txt
new file mode 100644 (file)
index 0000000..323575a
--- /dev/null
@@ -0,0 +1,5 @@
+
+add_executable(tickcount tickcount.c)
+set_module_type(tickcount win32cui UNICODE)
+add_importlibs(tickcount ntdll msvcrt kernel32)
+add_cd_file(TARGET tickcount DESTINATION reactos/bin FOR all)