Skip to content

Commit cc7cf82

Browse files
committed
[ROSAPPS] Remove applications from test directory
CORE-17097
1 parent ff6b138 commit cc7cf82

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

modules/rosapps/applications/cmdutils/cat/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(cat cat.c)
33
set_module_type(cat win32cui)
44
add_importlibs(cat msvcrt kernel32)
5-
add_cd_file(TARGET cat DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET cat DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/cmdutils/gflags/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ if(MSVC)
1515
add_importlibs(gflags ntdll)
1616
endif()
1717

18-
add_cd_file(TARGET gflags DESTINATION reactos/bin FOR all)
18+
add_cd_file(TARGET gflags DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/devutils/shimtest_ros/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ add_executable(shimtest_ros shimtest_ros.c shimtest_ros.rc)
55

66
set_module_type(shimtest_ros win32cui)
77
add_importlibs(shimtest_ros shlwapi msvcrt kernel32 ntdll)
8-
add_cd_file(TARGET shimtest_ros DESTINATION reactos/bin FOR all)
8+
add_cd_file(TARGET shimtest_ros DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/binpatch/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ add_importlibs(binpatch ntdll msvcrt kernel32)
55
if(MSVC)
66
target_link_libraries(binpatch oldnames)
77
endif()
8-
add_cd_file(TARGET binpatch DESTINATION reactos/bin FOR all)
8+
add_cd_file(TARGET binpatch DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/driver/load/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(load load.c)
33
set_module_type(load win32cui UNICODE)
44
add_importlibs(load ntdll user32 msvcrt kernel32)
5-
add_cd_file(TARGET load DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET load DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/driver/unload/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(unload unload.c)
33
set_module_type(unload win32cui UNICODE)
44
add_importlibs(unload ntdll user32 msvcrt kernel32)
5-
add_cd_file(TARGET unload DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET unload DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/infinst/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(infinst infinst.c)
33
set_module_type(infinst win32cui)
44
add_importlibs(infinst ntdll user32 setupapi comdlg32 msvcrt kernel32)
5-
add_cd_file(TARGET infinst DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET infinst DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/nts2w32err/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(nts2w32err nts2w32err.c)
33
set_module_type(nts2w32err win32cui)
44
add_importlibs(nts2w32err ntdll msvcrt kernel32)
5-
add_cd_file(TARGET nts2w32err DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET nts2w32err DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/objdir/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(objdir objdir.c)
33
set_module_type(objdir win32cui)
44
add_importlibs(objdir ntdll msvcrt kernel32)
5-
add_cd_file(TARGET objdir DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET objdir DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/partinfo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(partinfo partinfo.c)
33
set_module_type(partinfo win32cui)
44
add_importlibs(partinfo ntdll msvcrt kernel32)
5-
add_cd_file(TARGET partinfo DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET partinfo DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/ps/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(ps ps.c)
33
set_module_type(ps win32cui)
44
add_importlibs(ps ntdll user32 msvcrt kernel32)
5-
add_cd_file(TARGET ps DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET ps DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/stats/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(stats stats.c)
33
set_module_type(stats win32cui UNICODE)
44
add_importlibs(stats ntdll msvcrt kernel32)
5-
add_cd_file(TARGET stats DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET stats DESTINATION reactos/system32 FOR all)

modules/rosapps/applications/sysutils/utils/tickcount/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
add_executable(tickcount tickcount.c)
33
set_module_type(tickcount win32cui UNICODE)
44
add_importlibs(tickcount ntdll msvcrt kernel32)
5-
add_cd_file(TARGET tickcount DESTINATION reactos/bin FOR all)
5+
add_cd_file(TARGET tickcount DESTINATION reactos/system32 FOR all)

0 commit comments

Comments
 (0)