mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
Добавлена возможность просмотра скриптов создания пользовательских объектов в контестной помощи. В скриптах имена других объектов заменяются на ссылки. Описание Readme.md
17 lines
566 B
CMake
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)
|