No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

38 líneas
1.3 KiB

  1. diff -rupN yaml-cpp/CMakeLists.txt yaml-cpp-cotire/CMakeLists.txt
  2. --- yaml-cpp/CMakeLists.txt 2012-01-21 09:52:48.000000000 +0100
  3. +++ yaml-cpp-cotire/CMakeLists.txt 2012-03-24 17:14:15.000000000 +0100
  4. @@ -14,6 +14,7 @@ if(POLICY CMP0015)
  5. endif()
  6. include(CheckCXXCompilerFlag)
  7. +include("${CMAKE_SOURCE_DIR}/cotire.cmake")
  8. ###
  9. @@ -235,6 +236,7 @@ add_library(yaml-cpp
  10. ${contrib_private_headers}
  11. )
  12. +cotire(yaml-cpp)
  13. set_target_properties(yaml-cpp PROPERTIES
  14. VERSION "${YAML_CPP_VERSION}"
  15. SOVERSION "${YAML_CPP_VERSION_MAJOR}.${YAML_CPP_VERSION_MINOR}"
  16. diff -rupN yaml-cpp/test/CMakeLists.txt yaml-cpp-cotire/test/CMakeLists.txt
  17. --- yaml-cpp/test/CMakeLists.txt 2012-01-21 09:52:48.000000000 +0100
  18. +++ yaml-cpp-cotire/test/CMakeLists.txt 2012-02-19 10:21:36.000000000 +0100
  19. @@ -13,3 +13,5 @@ add_executable(run-tests
  20. target_link_libraries(run-tests yaml-cpp)
  21. add_test(yaml-reader-test run-tests)
  22. +
  23. +cotire(run-tests)
  24. \ No newline at end of file
  25. diff -rupN yaml-cpp/util/CMakeLists.txt yaml-cpp-cotire/util/CMakeLists.txt
  26. --- yaml-cpp/util/CMakeLists.txt 2012-01-21 09:52:48.000000000 +0100
  27. +++ yaml-cpp-cotire/util/CMakeLists.txt 2012-02-19 10:21:54.000000000 +0100
  28. @@ -1,2 +1,3 @@
  29. add_executable(parse parse.cpp)
  30. target_link_libraries(parse yaml-cpp)
  31. +cotire(parse)
  32. \ No newline at end of file