Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

23 řádky
1.0 KiB

  1. # Project: test_cpputils ##########################################################################
  2. Project ( test_cpputils )
  3. File ( GLOB_RECURSE SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp )
  4. Add_Executable ( test_cpputils EXCLUDE_FROM_ALL ${SOURCE_FILES} )
  5. If ( __COTIRE_INCLUDED )
  6. Cotire ( test_cpputils )
  7. EndIf ( )
  8. Target_Link_Libraries (
  9. test_cpputils
  10. cpputils
  11. gtest
  12. gmock
  13. gmock_main
  14. pthread
  15. )
  16. Add_Custom_Target ( run_test_cpputils DEPENDS test_cpputils COMMAND ./test_cpputils )
  17. If ( NOT TARGET tests)
  18. Add_Custom_Target ( tests )
  19. EndIf ( )
  20. Add_Dependencies ( tests run_test_cpputils )