mirror of
https://github.com/reactos/reactos.git
synced 2025-06-04 08:50:27 +00:00
[POWRPROF_WINETEST]
- This test is not from Wine! Move to apitests. svn path=/trunk/; revision=56505
This commit is contained in:
parent
cbeedb06dc
commit
6443144a2b
6 changed files with 18 additions and 23 deletions
|
@ -5,16 +5,13 @@ add_subdirectory(advapi32)
|
|||
#add_subdirectory(crt)
|
||||
add_subdirectory(dciman32)
|
||||
add_subdirectory(gdi32)
|
||||
add_subdirectory(kernel32)
|
||||
add_subdirectory(msvcrt)
|
||||
add_subdirectory(ntdll)
|
||||
add_subdirectory(powrprof)
|
||||
add_subdirectory(user32)
|
||||
add_subdirectory(kernel32)
|
||||
|
||||
if(NOT MSVC)
|
||||
if(ARCH MATCHES i386)
|
||||
add_subdirectory(w32kdll)
|
||||
add_subdirectory(w32knapi)
|
||||
if(NOT MSVC AND ARCH MATCHES i386)
|
||||
add_subdirectory(w32kdll)
|
||||
add_subdirectory(w32knapi)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
add_subdirectory(ws2_32)
|
||||
|
|
13
rostests/apitests/powrprof/CMakeLists.txt
Normal file
13
rostests/apitests/powrprof/CMakeLists.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
add_definitions(
|
||||
-D__ROS_LONG64__
|
||||
-D_UNICODE -DUNICODE)
|
||||
|
||||
add_executable(powrprof_apitest power.c testlist.c)
|
||||
set_module_type(powrprof_apitest win32cui)
|
||||
add_importlibs(powrprof_apitest advapi32 powrprof msvcrt kernel32 ntdll)
|
||||
add_cd_file(TARGET powrprof_apitest DESTINATION reactos/bin FOR all)
|
||||
|
||||
if(NOT MSVC)
|
||||
allow_warnings(powrprof_apitest)
|
||||
endif()
|
|
@ -69,7 +69,6 @@ if(NOT MSVC)
|
|||
endif()
|
||||
add_subdirectory(opengl32)
|
||||
add_subdirectory(pdh)
|
||||
add_subdirectory(powrprof)
|
||||
add_subdirectory(psapi)
|
||||
add_subdirectory(qmgr)
|
||||
add_subdirectory(quartz)
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
|
||||
add_definitions(
|
||||
-D__ROS_LONG64__
|
||||
-D_DLL -D__USE_CRTIMP
|
||||
-D_UNICODE -DUNICODE)
|
||||
|
||||
add_executable(powrprof_winetest pwrprof.c testlist.c)
|
||||
set_module_type(powrprof_winetest win32cui)
|
||||
add_importlibs(powrprof_winetest advapi32 powrprof msvcrt kernel32 ntdll)
|
||||
add_cd_file(TARGET powrprof_winetest DESTINATION reactos/bin FOR all)
|
||||
|
||||
if(NOT MSVC)
|
||||
allow_warnings(powrprof_winetest)
|
||||
endif()
|
Loading…
Reference in a new issue