reactos/modules/rostests/unittests/interop/CMakeLists.txt
Stanislav Motylkov b6ae42492b
[INTEROP_UNITTEST] Add interoperability tests for localized strings (#7129)
Finally, an automated way to verify all these localized strings
that must be in sync between multiple modules.

CORE-18893
2024-09-01 15:22:29 +03:00

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)