pgadmin3/tests/CMakeLists.txt
lsv 1f7decd73f Added the possibility of contextual help on user functions.
Добавлена возможность просмотра скриптов создания пользовательских объектов
в контестной помощи. В скриптах имена других объектов заменяются на ссылки.
Описание Readme.md
2025-11-21 16:23:26 +05:00

17 lines
566 B
CMake

find_package(Catch2)
add_executable(test_Formatter test_Formatter.cpp ../utils/FormatterSQL.cpp)
#target_include_directories(test_Formatter PRIVATE ${CMAKE_SOURCE_DIR}/include)
#target_link_libraries(test_Formatter Catch2::Catch2)
#add_library(test_sources test_Formatter.cpp )
#target_link_libraries(test_sources Catch2::Catch2)
#add_executable(tests test.cpp)
#target_link_libraries(tests -Wl,--whole-archive test_sources -Wl,--no-whole-archive)
#target_link_libraries(tests Catch2::Catch2)
#include(CTest)
include(Catch)
catch_discover_tests(test_Formatter)