Advertisement
Guest User

Untitled

a guest
Feb 24th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.92 KB | None | 0 0
  1. --- fragview.git/CMakeLists.txt 2012-02-25 12:53:59.384830664 +1100
  2. +++ fragview.git-build/CMakeLists.txt   2012-02-25 13:28:07.338187126 +1100
  3. @@ -5,9 +5,9 @@
  4.  find_package (PkgConfig)
  5.  find_package (Boost REQUIRED)
  6.  
  7. -pkg_check_modules (GTKMM gtkmm-3.0)
  8. -pkg_check_modules (GLIBMM glibmm-2.4)
  9. -pkg_check_modules (SQLITE3 sqlite3)
  10. +pkg_search_module (GTKMM gtkmm-3.0)
  11. +pkg_search_module (GLIBMM glibmm-2.4)
  12. +pkg_search_module (SQLITE3 sqlite3)
  13.  
  14.  link_directories (
  15.         ${GTKMM_LIBRARY_DIRS}
  16. @@ -34,6 +34,10 @@
  17.         fileseverity.cc
  18.  )
  19.  
  20. +target_link_libraries (clusters
  21. +       ${GLIBMM_LIBRARIES}
  22. +)
  23. +
  24.  target_link_libraries (fragview
  25.         ${GTKMM_LIBRARIES}
  26.         clusters
  27. @@ -53,3 +57,9 @@
  28.         ${SQLITE3_LIBRARIES}
  29.         clusters
  30.  )
  31. +
  32. +install (TARGETS fileseverity fragdb fragview
  33. +       RUNTIME DESTINATION "bin")
  34. +
  35. +install (TARGETS clusters
  36. +       ARCHIVE DESTINATION "lib/static")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement