mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[CMAKE]
- Update oleaut32 winetest. - Add rosautotest to build. svn path=/trunk/; revision=50225
This commit is contained in:
parent
4eef1c1925
commit
078e5c0a31
3 changed files with 30 additions and 3 deletions
|
@ -3,7 +3,7 @@ add_subdirectory(apitests)
|
|||
#add_subdirectory(dibtests)
|
||||
#add_subdirectory(dxtest)
|
||||
#add_subdirectory(regtests)
|
||||
#add_subdirectory(rosautotest)
|
||||
add_subdirectory(rosautotest)
|
||||
#add_subdirectory(tests)
|
||||
#add_subdirectory(win32)
|
||||
add_subdirectory(winetests)
|
||||
|
|
27
rostests/rosautotest/CMakeLists.txt
Normal file
27
rostests/rosautotest/CMakeLists.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
|
||||
set_unicode()
|
||||
set_cpp()
|
||||
|
||||
list(APPEND SOURCE
|
||||
CConfiguration.cpp
|
||||
CFatalException.cpp
|
||||
CInvalidParameterException.cpp
|
||||
CJournaledTestList.cpp
|
||||
CProcess.cpp
|
||||
CSimpleException.cpp
|
||||
CTest.cpp
|
||||
CTestInfo.cpp
|
||||
CTestList.cpp
|
||||
CVirtualTestList.cpp
|
||||
CWebService.cpp
|
||||
CWineTest.cpp
|
||||
main.cpp
|
||||
shutdown.cpp
|
||||
tools.cpp)
|
||||
|
||||
add_executable(rosautotest ${SOURCE})
|
||||
|
||||
target_link_libraries(rosautotest wine)
|
||||
|
||||
set_module_type(rosautotest win32cui)
|
||||
add_importlibs(rosautotest advapi32 shell32 user32 wininet msvcrt kernel32 ntdll)
|
|
@ -5,10 +5,10 @@ add_definitions(
|
|||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||
|
||||
ADD_TYPELIB(oleaut32_typelibs test_reg.idl test_tlb.idl tmarshal.idl)
|
||||
add_typelib(oleaut32_typelibs test_reg.idl test_tlb.idl tmarshal.idl)
|
||||
add_dependencies(oleaut32_typelibs stdole2)
|
||||
|
||||
ADD_INTERFACE_DEFINITIONS(oleaut32_idlheaders test_reg.idl tmarshal.idl)
|
||||
add_interface_definitions(oleaut32_idlheaders test_reg.idl tmarshal.idl)
|
||||
add_idl_interface(tmarshal.idl)
|
||||
|
||||
list(APPEND SOURCE
|
||||
|
|
Loading…
Reference in a new issue