mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
b6ae42492b
Finally, an automated way to verify all these localized strings that must be in sync between multiple modules. CORE-18893
16 lines
460 B
CMake
16 lines
460 B
CMake
|
|
PROJECT(interop_unittest)
|
|
|
|
include_directories(../../apitests/include)
|
|
|
|
list(APPEND SOURCE
|
|
LocaleTests.cpp
|
|
testlist.c)
|
|
|
|
add_executable(interop_unittest ${SOURCE})
|
|
|
|
target_link_libraries(interop_unittest cppstl)
|
|
set_module_type(interop_unittest win32cui)
|
|
target_compile_definitions(interop_unittest PRIVATE UNICODE _UNICODE _STLP_NO_EXCEPTIONS)
|
|
add_importlibs(interop_unittest shell32 user32 msvcrt kernel32)
|
|
add_rostests_file(TARGET interop_unittest)
|