Advertisement
AlexNovoross87

PACKAGES

Feb 12th, 2025 (edited)
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. LIBPQXX WINDOWS:
  2. include_directories("F:/COMPILESOFT/vcpkg/installed/x64-mingw-static/include/")
  3. link_directories("F:/COMPILESOFT/vcpkg/installed/x64-mingw-static/lib")
  4. set(SQLpack pqxx pq ws2_32 wsock32)
  5. target_link_libraries(T..... PUBLIC ${SQLpack})
  6.  
  7. ---------------------------------------------------------------------------
  8. ---------------------------------------------------------------------------
  9. GTEST WINDOWS:
  10. Elapsed time to handle gtest:x64-mingw-static: 21 s
  11. gtest:x64-mingw-static package ABI: a492cf671e6b879329269625015bc52d9e32679c75fd69f90e379204f903c5db
  12. Total install time: 21 s
  13. The package gtest is compatible with built-in CMake targets:
  14.  
  15. enable_testing()
  16.  
  17. find_package(GTest CONFIG REQUIRED)
  18. target_link_libraries(main PRIVATE gtest gtest_main gmock gmock_main)
  19.  
  20. add_test(AllTestsInMain main)
  21.  
  22. ---------------------------------------------------------------------------
  23. ---------------------------------------------------------------------------
  24.  
  25.  
  26. -- Performing post-build validation
  27. Stored binaries in 1 destinations in 1.1 s.
  28. Elapsed time to handle gtest:x64-windows-static: 15 s
  29. gtest:x64-windows-static package ABI: fcdbe5be31cb0225b29a2178ac93e339737be1ef3963d1fbf2a7ae70ae5ca816
  30. Total install time: 15 s
  31. The package gtest is compatible with built-in CMake targets:
  32.  
  33. enable_testing()
  34. find_package(GTest CONFIG REQUIRED)
  35. target_link_libraries(main PRIVATE GTest::gtest GTest::gtest_main GTest::gmock GTest::gmock_main)
  36. add_test(AllTestsInMain main)
  37.  
  38.  
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement