Guest User

kalzium-patch

a guest
Dec 28th, 2014
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 342.49 KB | None | 0 0
  1. diff --git a/CMakeLists.txt b/CMakeLists.txt
  2. index 7d388cdfc3ea42b5784282d8a9511f3ed86d060c..f4ab27b39f7ff0e2b9c60ed7142c97bc2d33fa21 100644
  3. --- a/CMakeLists.txt
  4. +++ b/CMakeLists.txt
  5. @@ -1,63 +1,37 @@
  6.  project(kalzium)
  7. -cmake_minimum_required(VERSION 2.8.12)
  8. -
  9. -find_package(ECM 0.0.11 REQUIRED NO_MODULE)
  10. -set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
  11. -
  12. -find_package(Qt5 REQUIRED COMPONENTS Widgets)
  13. -find_package(KF5 REQUIRED COMPONENTS CoreAddons Solid Config)
  14. -find_package(KF5DocTools REQUIRED)
  15. -find_package(Qt5Widgets REQUIRED)
  16. -find_package(PkgConfig REQUIRED)
  17. -find_package(KF5CoreAddons REQUIRED)
  18. -find_package(KF5Config REQUIRED)
  19. -find_package(KF5Solid REQUIRED)  
  20. -#find_package(Qt4 REQUIRED)
  21. -#find_package(Eigen2 REQUIRED)
  22. -find_package(ECM REQUIRED)
  23. -find_package(Qt5Core REQUIRED)
  24. -find_package(Qt5Gui REQUIRED)
  25. -#ECM (required version >= 0.0.11)
  26. -#Qt5Core (required version >= 5.3.0)
  27. -#Qt5Gui (required version >= 5.3.0)
  28. -
  29. -include(KDEInstallDirs)
  30. -include(KDECompilerSettings)
  31. -include(KDECMakeSetting)
  32. -include(FeatureSummary)
  33. -include(ECMInstallIcons)
  34.  
  35.  set(CMAKE_MODULE_PATH ${kalzium_SOURCE_DIR}/cmake/modules )
  36.  
  37. -# search packages used by KDE
  38. -#find_package(KDE4 4.6.80 REQUIRED)
  39. +# search packages used by KDE
  40. +find_package(KDE4 4.6.80 REQUIRED)
  41.  if(WIN32)
  42.    find_package(KDEWIN32 REQUIRED)
  43.    # detect oxygen icon dir at configure time based on KDEDIRS - there may be different package installation locations
  44. - #execute_process(COMMAND "${KDE4_KDECONFIG_EXECUTABLE}" --path icon OUTPUT_VARIABLE _dir #ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
  45. -  #file(TO_CMAKE_PATH "${_dir}" __dir)
  46. -  #find_path(KDE4_ICON_DIR oxygen PATHS
  47. -   #  ${__dir})
  48. -  #message(STATUS "using oxygen application icons from ${KDE4_ICON_DIR}")
  49. +  execute_process(COMMAND "${KDE4_KDECONFIG_EXECUTABLE}" --path icon OUTPUT_VARIABLE _dir ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
  50. +  file(TO_CMAKE_PATH "${_dir}" __dir)
  51. +  find_path(KDE4_ICON_DIR oxygen PATHS
  52. +      ${__dir}
  53. +  )
  54. +  message(STATUS "using oxygen application icons from ${KDE4_ICON_DIR}")
  55.  else(WIN32)
  56. -  #set (KDE4_ICON_DIR  ${CMAKE_INSTALL_PREFIX}/share/icons)
  57. +    set (KDE4_ICON_DIR  ${CMAKE_INSTALL_PREFIX}/share/icons)
  58.  endif(WIN32)
  59.  
  60. -#include(KDE4Defaults)
  61. -#include(MacroLibrary)
  62. -#include(MacroOptionalAddSubdirectory)
  63. -#include(MacroBoolTo01)
  64. +include(KDE4Defaults)
  65. +include(MacroLibrary)
  66. +include(MacroOptionalAddSubdirectory)
  67. +include(MacroBoolTo01)
  68.  
  69. -#add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
  70. +add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
  71.  add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
  72. -#include_directories (${QDBUS_INCLUDE_DIRS}  ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} #${KDE4_INCLUDES} libscience)
  73. +include_directories (${QDBUS_INCLUDE_DIRS}  ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES} libscience)
  74.  if(MSVC)
  75.  # for correctly linking openbabel:
  76.  # see http://www.mail-archive.com/[email protected]/msg01975.html
  77.  add_definitions(-DUSING_DYNAMIC_LIBS)
  78.  endif(MSVC)
  79.  
  80. -#no_enable_final(kalzium)
  81. +kde4_no_enable_final(kalzium)
  82.  
  83.  include(KalziumConfigureChecks.cmake)
  84.  
  85. @@ -80,9 +54,7 @@ add_subdirectory(plasmoid)
  86.  add_subdirectory(libscience)
  87.  add_subdirectory(qml)
  88.  
  89. -
  90.  install(FILES kalzium.appdata.xml DESTINATION ${SHARE_INSTALL_PREFIX}/appdata/)
  91.  
  92. -#macro_display_feature_log()
  93. +macro_display_feature_log()
  94.  
  95. -feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
  96. diff --git a/CMakeLists.txt~ b/CMakeLists.txt~
  97. deleted file mode 100644
  98. index 7a4f544081a99a1a8584116924caa15f0509aa9c..0000000000000000000000000000000000000000
  99. --- a/CMakeLists.txt~
  100. +++ /dev/null
  101. @@ -1,70 +0,0 @@
  102. -project(kalzium)
  103. -cmake_minimum_required(VERSION 2.8.12)
  104. -
  105. -find_package(ECM 0.0.11 REQUIRED NO_MODULE)
  106. -set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
  107. -
  108. -include(KDEInstallDirs)
  109. -include(KDECompilerSettings)
  110. -include(KDECMakeSettings)
  111. -include(FeatureSummary)
  112. -set(CMAKE_MODULE_PATH ${kalzium_SOURCE_DIR}/cmake/modules )
  113. -find_package(Qt5 REQUIRED COMPONENTS Widgets)
  114. -find_package(KF5 REQUIRED COMPONENTS CoreAddons Solid)
  115. -# search packages used by KDE
  116. -#find_package(KDE4 4.6.80 REQUIRED)
  117. -if(WIN32)
  118. -  find_package(KDEWIN32 REQUIRED)
  119. -  # detect oxygen icon dir at configure time based on KDEDIRS - there may be different package installation locations
  120. - # execute_process(COMMAND "${KDE4_KDECONFIG_EXECUTABLE}" --path icon OUTPUT_VARIABLE _dir ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
  121. - # file(TO_CMAKE_PATH "${_dir}" __dir)
  122. -  #find_path(KDE4_ICON_DIR oxygen PATHS
  123. -   #   ${__dir})
  124. -  message(STATUS "using oxygen application icons from ${KDE4_ICON_DIR}")
  125. -else(WIN32)
  126. - #   set (KDE4_ICON_DIR  ${CMAKE_INSTALL_PREFIX}/share/icons)
  127. -endif(WIN32)
  128. -
  129. -#include(KDE4Defaults)
  130. -#include(MacroLibrary)
  131. -#include(MacroOptionalAddSubdirectory)
  132. -#include(MacroBoolTo01)
  133. -
  134. -#add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
  135. -add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
  136. -include_directories (${QDBUS_INCLUDE_DIRS}  ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES} libscience)
  137. -if(MSVC)
  138. -# for correctly linking openbabel:
  139. -# see http://www.mail-archive.com/openbabel-devel@lists.sourceforge.net/msg01975.html
  140. -add_definitions(-DUSING_DYNAMIC_LIBS)
  141. -endif(MSVC)
  142. -
  143. -no_enable_final(kalzium)
  144. -
  145. -include(KalziumConfigureChecks.cmake)
  146. -
  147. -if (OPENBABEL2_FOUND AND Avogadro_FOUND AND EIGEN3_FOUND)
  148. -  # avoid compilerwarnings about redefinitions
  149. -  # todo: use check_function_exits() ?
  150. -  message(STATUS "Kalzium molecular editor enabled")
  151. -  if (WIN32)
  152. -    add_definitions(-DHAVE_SNPRINTF -DHAVE_STRCASECMP -DHAVE_STRNCASECMP)
  153. -  endif (WIN32)
  154. -  add_subdirectory(compoundviewer)
  155. -else (OPENBABEL2_FOUND AND Avogadro_FOUND AND EIGEN3_FOUND)
  156. -  message(STATUS "Kalzium molecular editor disabled")
  157. -endif (OPENBABEL2_FOUND AND Avogadro_FOUND AND EIGEN3_FOUND)
  158. -
  159. -add_subdirectory(doc)
  160. -add_subdirectory(src)
  161. -add_subdirectory(data)
  162. -add_subdirectory(plasmoid)
  163. -add_subdirectory(libscience)
  164. -add_subdirectory(qml)
  165. -add_subdirectory(componentviewer)
  166. -
  167. -install(FILES kalzium.appdata.xml DESTINATION ${SHARE_INSTALL_PREFIX}/appdata/)
  168. -
  169. -macro_display_feature_log()
  170. -
  171. -feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
  172. diff --git a/KalziumConfigureChecks.cmake b/KalziumConfigureChecks.cmake
  173. index 65ba760055e79efb36a233a20dce50dfffaba3af..e3197ac1a1b4b8129b1100301831238c8128d176 100644
  174. --- a/KalziumConfigureChecks.cmake
  175. +++ b/KalziumConfigureChecks.cmake
  176. @@ -1,24 +1,21 @@
  177.  include(CheckIncludeFiles)
  178.  include(CheckFunctionExists)
  179.  
  180. -find_package(OCaml)
  181. -find_package(Libfacile)
  182. -find_package(OpenBabel2)
  183. -find_package(Eigen3)
  184. -find_package(Avogadro 1.0.0 NO_MODULE)
  185. +macro_optional_find_package(OCaml)
  186. +macro_optional_find_package(Libfacile)
  187. +macro_optional_find_package(OpenBabel2)
  188. +macro_optional_find_package(Eigen3)
  189. +macro_optional_find_package(Avogadro 1.0.0 NO_MODULE)
  190.  
  191.  find_package(PkgConfig)
  192.  pkg_check_modules(CHEMICAL_MIME_DATA chemical-mime-data)
  193. -include(CheckIncludeFiles)
  194. +
  195.  check_include_files(ieeefp.h HAVE_IEEEFP_H)
  196. -set(HAVE_FACILE ${LIBFACILE_FOUND})
  197. -set(HAVE_OPENBABEL2 ${OPENBABEL2_FOUND})
  198. -set(HAVE_EIGEN ${EIGEN3_FOUND})
  199. -set(HAVE_AVOGADRO ${Avogadro_FOUND})
  200. -#macro_bool_to_01(LIBFACILE_FOUND HAVE_FACILE)
  201. -#macro_bool_to_01(OPENBABEL2_FOUND HAVE_OPENBABEL2)
  202. -#macro_bool_to_01(EIGEN3_FOUND HAVE_EIGEN)
  203. -#macro_bool_to_01(Avogadro_FOUND HAVE_AVOGADRO)
  204. +
  205. +macro_bool_to_01(LIBFACILE_FOUND HAVE_FACILE)
  206. +macro_bool_to_01(OPENBABEL2_FOUND HAVE_OPENBABEL2)
  207. +macro_bool_to_01(EIGEN3_FOUND HAVE_EIGEN)
  208. +macro_bool_to_01(Avogadro_FOUND HAVE_AVOGADRO)
  209.  
  210.  # at the end, output the configuration
  211.  configure_file(
  212. @@ -26,10 +23,10 @@ configure_file(
  213.     ${CMAKE_CURRENT_BINARY_DIR}/config-kalzium.h
  214.  )
  215.  
  216. -#set_package_properties(OCAML_FOUND "OCaml" "http://caml.inria.fr/"  FALSE "OCaml is needed by Kalzium for the Equation Solver")
  217. -#(OCAML_FOUND "OCaml" "OCaml is needed by Kalzium for the Equation Solver" "http://caml.inria.fr/" FALSE "" "")
  218. -#set_package_properties(LIBFACILE_FOUND "LibFacile" "libfacile is needed by Kalzium for the Equation Solver." "http://www.recherche.enac.fr/log/facile/" FALSE "" "")
  219. -#set_package_properties(OPENBABEL2_FOUND "OpenBabel2" "OpenBabel is needed by Kalzium for the 3D-molecule viewer" "http://openbabel.sourceforge.net/" FALSE "2.2" "")
  220. -#set_package_properties(EIGEN3_FOUND "Eigen3" "A generic C++ template library for dense and sparse matrices" "http://eigen.tuxfamily.org" FALSE "3.0.0" "")
  221. -#set_package_properties(Avogadro_FOUND "Avogadro" "Advanced molecular editor" "http://avogadro.openmolecules.net" FALSE "1.0" "")
  222. -#set_package_properties(CHEMICAL_MIME_DATA_FOUND "Chemical mime data" "Needed to open CML molecules from the file manager" "http://chemical-mime.sourceforge.net/" FALSE "" "")
  223. \ No newline at end of file
  224. +macro_log_feature(OCAML_FOUND "OCaml" "OCaml is needed by Kalzium for the Equation Solver" "http://caml.inria.fr/" FALSE "" "")
  225. +macro_log_feature(LIBFACILE_FOUND "LibFacile" "libfacile is needed by Kalzium for the Equation Solver." "http://www.recherche.enac.fr/log/facile/" FALSE "" "")
  226. +macro_log_feature(OPENBABEL2_FOUND "OpenBabel2" "OpenBabel is needed by Kalzium for the 3D-molecule viewer" "http://openbabel.sourceforge.net/" FALSE "2.2" "")
  227. +macro_log_feature(EIGEN3_FOUND "Eigen3" "A generic C++ template library for dense and sparse matrices" "http://eigen.tuxfamily.org" FALSE "3.0.0" "")
  228. +macro_log_feature(Avogadro_FOUND "Avogadro" "Advanced molecular editor" "http://avogadro.openmolecules.net" FALSE "1.0" "")
  229. +macro_log_feature(CHEMICAL_MIME_DATA_FOUND "Chemical mime data" "Needed to open CML molecules from the file manager" "http://chemical-mime.sourceforge.net/" FALSE "" "")
  230. +
  231. diff --git a/compoundviewer/CMakeLists.txt b/compoundviewer/CMakeLists.txt
  232. index 9530de22afce6841b02a6eb93220e84cf68ce2a3..097124859d70cdf3175dc0c6283efe2b61cdd7db 100644
  233. --- a/compoundviewer/CMakeLists.txt
  234. +++ b/compoundviewer/CMakeLists.txt
  235. @@ -1,8 +1,10 @@
  236.  include(${Avogadro_USE_FILE})
  237.  
  238. -#include_directories( ${CMAKE_CURRENT_BINARY_DIR}/..
  239. - # ${EIGEN3_INCLUDE_DIR}
  240. -  #${OPENBABEL2_INCLUDE_DIR})
  241. +include_directories(
  242. +  ${CMAKE_CURRENT_BINARY_DIR}/..
  243. +  ${EIGEN3_INCLUDE_DIR}
  244. +  ${OPENBABEL2_INCLUDE_DIR}
  245. +  )
  246.  
  247.  set( compoundviewer_SRCS
  248.    openbabel2wrapper.cpp
  249. @@ -11,12 +13,12 @@ set( compoundviewer_SRCS
  250.  
  251.  #add_subdirectory(widgets)
  252.  
  253. -add_library(compoundviewer SHARED ${compoundviewer_SRCS})
  254. +kde4_add_library(compoundviewer SHARED ${compoundviewer_SRCS})
  255.  
  256.  target_link_libraries(compoundviewer
  257.     ${OPENBABEL2_LIBRARIES}
  258. -   Qt5::OpenGL
  259. -   KF5::WidgetsAddons
  260. +   ${QT_QTOPENGL_LIBRARY}
  261. +   ${KDE4_KDEUI_LIBS}
  262.     avogadro
  263.  )
  264.  
  265. diff --git a/compoundviewer/CMakeLists.txt~ b/compoundviewer/CMakeLists.txt~
  266. deleted file mode 100644
  267. index 5f501158d352f91cddb9bc9c22574f310780e3c2..0000000000000000000000000000000000000000
  268. --- a/compoundviewer/CMakeLists.txt~
  269. +++ /dev/null
  270. @@ -1,25 +0,0 @@
  271. -include(${Avogadro_USE_FILE})
  272. -
  273. -#include_directories( ${CMAKE_CURRENT_BINARY_DIR}/..
  274. - # ${EIGEN3_INCLUDE_DIR}
  275. -  #${OPENBABEL2_INCLUDE_DIR})
  276. -
  277. -set( compoundviewer_SRCS
  278. -  openbabel2wrapper.cpp
  279. -  kalziumglwidget.cpp
  280. -  )
  281. -
  282. -#add_subdirectory(widgets)
  283. -
  284. -add_library(compoundviewer SHARED ${compoundviewer_SRCS})
  285. -
  286. -target_link_libraries(compoundviewer
  287. -   ${OPENBABEL2_LIBRARIES}
  288. -   ${Qt5::OpenGL}
  289. -   ${KF5::WidgetsAddons}
  290. -   avogadro
  291. -)
  292. -
  293. -set_target_properties(compoundviewer PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
  294. -
  295. -install(TARGETS compoundviewer ${INSTALL_TARGETS_DEFAULT_ARGS})
  296. diff --git a/compoundviewer/widgets/CMakeLists.txt b/compoundviewer/widgets/CMakeLists.txt
  297. index 08dc7ff1f5ac91aa2c1cd5dc76c51b6b0e2aa721..32f200ad5944d67ca972177d994dea2b53e1b750 100644
  298. --- a/compoundviewer/widgets/CMakeLists.txt
  299. +++ b/compoundviewer/widgets/CMakeLists.txt
  300. @@ -7,10 +7,10 @@ set(kalziumui_PART_SRCS
  301.  # nothing left here!
  302.     )
  303.  
  304. -add_widget_files(kalziumui_PART_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/kalziumui.widgets)
  305. +kde4_add_widget_files(kalziumui_PART_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/kalziumui.widgets)
  306.  
  307. -add_library(kalziumuiwidgets ${kalziumui_PART_SRCS})
  308. +kde4_add_plugin(kalziumuiwidgets ${kalziumui_PART_SRCS})
  309.  
  310. -target_link_libraries(kalziumuiwidgets ${OPENBABEL2_LIBRARIES} ${Qt5::Designer} ${KF5::Core})
  311. +target_link_libraries(kalziumuiwidgets ${OPENBABEL2_LIBRARIES} ${QT_QTDESIGNER_LIBRARY} ${KDE4_KDECORE_LIBS})
  312.  
  313.  install(TARGETS kalziumuiwidgets DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/designer)
  314. diff --git a/compoundviewer/widgets/CMakeLists.txt~ b/compoundviewer/widgets/CMakeLists.txt~
  315. deleted file mode 100644
  316. index 32f200ad5944d67ca972177d994dea2b53e1b750..0000000000000000000000000000000000000000
  317. --- a/compoundviewer/widgets/CMakeLists.txt~
  318. +++ /dev/null
  319. @@ -1,16 +0,0 @@
  320. -include_directories(
  321. -   ${CMAKE_CURRENT_BINARY_DIR}/..
  322. -   ${CMAKE_CURRENT_SOURCE_DIR}/..
  323. -)
  324. -
  325. -set(kalziumui_PART_SRCS
  326. -# nothing left here!
  327. -   )
  328. -
  329. -kde4_add_widget_files(kalziumui_PART_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/kalziumui.widgets)
  330. -
  331. -kde4_add_plugin(kalziumuiwidgets ${kalziumui_PART_SRCS})
  332. -
  333. -target_link_libraries(kalziumuiwidgets ${OPENBABEL2_LIBRARIES} ${QT_QTDESIGNER_LIBRARY} ${KDE4_KDECORE_LIBS})
  334. -
  335. -install(TARGETS kalziumuiwidgets DESTINATION ${PLUGIN_INSTALL_DIR}/plugins/designer)
  336. diff --git a/data/icons/CMakeLists.txt b/data/icons/CMakeLists.txt
  337. index 1342da434759d512192fcb3ecebfa244ae418181..779ced560c4ad5a956501132982754a68615c5ae 100644
  338. --- a/data/icons/CMakeLists.txt
  339. +++ b/data/icons/CMakeLists.txt
  340. @@ -1,3 +1,3 @@
  341.  
  342. -ecm_install_icons(${DATA_INSTALL_DIR}/kalzium/icons  )
  343. +kde4_install_icons( ${DATA_INSTALL_DIR}/kalzium/icons  )
  344.  
  345. diff --git a/data/icons/CMakeLists.txt~ b/data/icons/CMakeLists.txt~
  346. deleted file mode 100644
  347. index 779ced560c4ad5a956501132982754a68615c5ae..0000000000000000000000000000000000000000
  348. --- a/data/icons/CMakeLists.txt~
  349. +++ /dev/null
  350. @@ -1,3 +0,0 @@
  351. -
  352. -kde4_install_icons( ${DATA_INSTALL_DIR}/kalzium/icons  )
  353. -
  354. diff --git a/data/icons/hi16-action-calculate.png b/data/icons/hi16-action-calculate.png
  355. new file mode 100644
  356. index 0000000000000000000000000000000000000000..428102f69d1afcdfccf68cd3dd8d86a86c132a4a
  357. Binary files /dev/null and b/data/icons/hi16-action-calculate.png differ
  358. diff --git a/data/icons/hi16-action-chemical.png b/data/icons/hi16-action-chemical.png
  359. new file mode 100644
  360. index 0000000000000000000000000000000000000000..94a05eb022d8a4b3f960d7d31d1fb2baaa4972eb
  361. Binary files /dev/null and b/data/icons/hi16-action-chemical.png differ
  362. diff --git a/data/icons/hi16-action-elempic.png b/data/icons/hi16-action-elempic.png
  363. new file mode 100644
  364. index 0000000000000000000000000000000000000000..7c8b6ca5600bbcba73617a382fd16f02013bca8a
  365. Binary files /dev/null and b/data/icons/hi16-action-elempic.png differ
  366. diff --git a/data/icons/hi16-action-energies.png b/data/icons/hi16-action-energies.png
  367. new file mode 100644
  368. index 0000000000000000000000000000000000000000..0ca806116740741eb82b815c62ddcef4920ecf7e
  369. Binary files /dev/null and b/data/icons/hi16-action-energies.png differ
  370. diff --git a/data/icons/hi16-action-eqchem.png b/data/icons/hi16-action-eqchem.png
  371. new file mode 100644
  372. index 0000000000000000000000000000000000000000..6814438ac91f731628b591d89661b804cde6a6ab
  373. Binary files /dev/null and b/data/icons/hi16-action-eqchem.png differ
  374. diff --git a/data/icons/hi16-action-glossary.png b/data/icons/hi16-action-glossary.png
  375. new file mode 100644
  376. index 0000000000000000000000000000000000000000..5f637c4decd39e1b68ceaf3ec5b0f9ce97ee3d3a
  377. Binary files /dev/null and b/data/icons/hi16-action-glossary.png differ
  378. diff --git a/data/icons/hi16-action-isotopemap.png b/data/icons/hi16-action-isotopemap.png
  379. new file mode 100644
  380. index 0000000000000000000000000000000000000000..8c92ed5f1a157a2327391250d9833e3dc8259f78
  381. Binary files /dev/null and b/data/icons/hi16-action-isotopemap.png differ
  382. diff --git a/data/icons/hi16-action-kalzium_molviewer.png b/data/icons/hi16-action-kalzium_molviewer.png
  383. new file mode 100644
  384. index 0000000000000000000000000000000000000000..8dad197a8838f8392e7521107a4f35f7595a0e96
  385. Binary files /dev/null and b/data/icons/hi16-action-kalzium_molviewer.png differ
  386. diff --git a/data/icons/hi16-action-kalzium_rs.png b/data/icons/hi16-action-kalzium_rs.png
  387. new file mode 100644
  388. index 0000000000000000000000000000000000000000..67cb26721944bb1623cb6eb6a2c5af6133910ba8
  389. Binary files /dev/null and b/data/icons/hi16-action-kalzium_rs.png differ
  390. diff --git a/data/icons/hi16-action-kalzium_tables.png b/data/icons/hi16-action-kalzium_tables.png
  391. new file mode 100644
  392. index 0000000000000000000000000000000000000000..b84d9fb5889a2a66c87eb2d172b6ca88b8d0f8b9
  393. Binary files /dev/null and b/data/icons/hi16-action-kalzium_tables.png differ
  394. diff --git a/data/icons/hi16-action-legend.png b/data/icons/hi16-action-legend.png
  395. new file mode 100644
  396. index 0000000000000000000000000000000000000000..9e3b294143ae9442fbbb4c3319ef729d7f1fa7b0
  397. Binary files /dev/null and b/data/icons/hi16-action-legend.png differ
  398. diff --git a/data/icons/hi16-action-misc.png b/data/icons/hi16-action-misc.png
  399. new file mode 100644
  400. index 0000000000000000000000000000000000000000..88f0b0b175c7b09883a6605a533dbe6dab3ba1e3
  401. Binary files /dev/null and b/data/icons/hi16-action-misc.png differ
  402. diff --git a/data/icons/hi16-action-numbers.png b/data/icons/hi16-action-numbers.png
  403. new file mode 100644
  404. index 0000000000000000000000000000000000000000..c303cc65cc0e1311a683d1d60993c06afbf8a4e4
  405. Binary files /dev/null and b/data/icons/hi16-action-numbers.png differ
  406. diff --git a/data/icons/hi16-action-orbits.png b/data/icons/hi16-action-orbits.png
  407. new file mode 100644
  408. index 0000000000000000000000000000000000000000..797179528a7667cc822a71d12e5202e8df639183
  409. Binary files /dev/null and b/data/icons/hi16-action-orbits.png differ
  410. diff --git a/data/icons/hi16-action-overview.png b/data/icons/hi16-action-overview.png
  411. new file mode 100644
  412. index 0000000000000000000000000000000000000000..ab9fc7192bfb618225d46a961b156f407d3d3b66
  413. Binary files /dev/null and b/data/icons/hi16-action-overview.png differ
  414. diff --git a/data/icons/hi16-action-plot.png b/data/icons/hi16-action-plot.png
  415. new file mode 100644
  416. index 0000000000000000000000000000000000000000..660d57c7829a0295e46bdd8922fb5e3843015517
  417. Binary files /dev/null and b/data/icons/hi16-action-plot.png differ
  418. diff --git a/data/icons/hi16-action-sidebar.png b/data/icons/hi16-action-sidebar.png
  419. new file mode 100644
  420. index 0000000000000000000000000000000000000000..36eb464d1a2daaca61b91e2b975c86941112c6f6
  421. Binary files /dev/null and b/data/icons/hi16-action-sidebar.png differ
  422. diff --git a/data/icons/hi16-action-spectrum.png b/data/icons/hi16-action-spectrum.png
  423. new file mode 100644
  424. index 0000000000000000000000000000000000000000..5a61b882d560e5c8895bd5946ebf49beb55c8e3c
  425. Binary files /dev/null and b/data/icons/hi16-action-spectrum.png differ
  426. diff --git a/data/icons/hi16-action-statematter.png b/data/icons/hi16-action-statematter.png
  427. new file mode 100644
  428. index 0000000000000000000000000000000000000000..d75e317ca89b5641b61217adaa3b564718217d83
  429. Binary files /dev/null and b/data/icons/hi16-action-statematter.png differ
  430. diff --git a/data/icons/hi16-action-timeline.png b/data/icons/hi16-action-timeline.png
  431. new file mode 100644
  432. index 0000000000000000000000000000000000000000..0dedbf6d79043c9b2ea99a878671b07c02af7f30
  433. Binary files /dev/null and b/data/icons/hi16-action-timeline.png differ
  434. diff --git a/data/icons/hi16-action-tooltip.png b/data/icons/hi16-action-tooltip.png
  435. new file mode 100644
  436. index 0000000000000000000000000000000000000000..6005b399fc1daf15c565b57cd481bd8e16573313
  437. Binary files /dev/null and b/data/icons/hi16-action-tooltip.png differ
  438. diff --git a/data/icons/hi16-actions-calculate.png b/data/icons/hi16-actions-calculate.png
  439. deleted file mode 100644
  440. index 428102f69d1afcdfccf68cd3dd8d86a86c132a4a..0000000000000000000000000000000000000000
  441. Binary files a/data/icons/hi16-actions-calculate.png and /dev/null differ
  442. diff --git a/data/icons/hi16-actions-chemical.png b/data/icons/hi16-actions-chemical.png
  443. deleted file mode 100644
  444. index 94a05eb022d8a4b3f960d7d31d1fb2baaa4972eb..0000000000000000000000000000000000000000
  445. Binary files a/data/icons/hi16-actions-chemical.png and /dev/null differ
  446. diff --git a/data/icons/hi16-actions-elempic.png b/data/icons/hi16-actions-elempic.png
  447. deleted file mode 100644
  448. index 7c8b6ca5600bbcba73617a382fd16f02013bca8a..0000000000000000000000000000000000000000
  449. Binary files a/data/icons/hi16-actions-elempic.png and /dev/null differ
  450. diff --git a/data/icons/hi16-actions-energies.png b/data/icons/hi16-actions-energies.png
  451. deleted file mode 100644
  452. index 0ca806116740741eb82b815c62ddcef4920ecf7e..0000000000000000000000000000000000000000
  453. Binary files a/data/icons/hi16-actions-energies.png and /dev/null differ
  454. diff --git a/data/icons/hi16-actions-eqchem.png b/data/icons/hi16-actions-eqchem.png
  455. deleted file mode 100644
  456. index 6814438ac91f731628b591d89661b804cde6a6ab..0000000000000000000000000000000000000000
  457. Binary files a/data/icons/hi16-actions-eqchem.png and /dev/null differ
  458. diff --git a/data/icons/hi16-actions-glossary.png b/data/icons/hi16-actions-glossary.png
  459. deleted file mode 100644
  460. index 5f637c4decd39e1b68ceaf3ec5b0f9ce97ee3d3a..0000000000000000000000000000000000000000
  461. Binary files a/data/icons/hi16-actions-glossary.png and /dev/null differ
  462. diff --git a/data/icons/hi16-actions-isotopemap.png b/data/icons/hi16-actions-isotopemap.png
  463. deleted file mode 100644
  464. index 8c92ed5f1a157a2327391250d9833e3dc8259f78..0000000000000000000000000000000000000000
  465. Binary files a/data/icons/hi16-actions-isotopemap.png and /dev/null differ
  466. diff --git a/data/icons/hi16-actions-kalzium_molviewer.png b/data/icons/hi16-actions-kalzium_molviewer.png
  467. deleted file mode 100644
  468. index 8dad197a8838f8392e7521107a4f35f7595a0e96..0000000000000000000000000000000000000000
  469. Binary files a/data/icons/hi16-actions-kalzium_molviewer.png and /dev/null differ
  470. diff --git a/data/icons/hi16-actions-kalzium_rs.png b/data/icons/hi16-actions-kalzium_rs.png
  471. deleted file mode 100644
  472. index 67cb26721944bb1623cb6eb6a2c5af6133910ba8..0000000000000000000000000000000000000000
  473. Binary files a/data/icons/hi16-actions-kalzium_rs.png and /dev/null differ
  474. diff --git a/data/icons/hi16-actions-kalzium_tables.png b/data/icons/hi16-actions-kalzium_tables.png
  475. deleted file mode 100644
  476. index b84d9fb5889a2a66c87eb2d172b6ca88b8d0f8b9..0000000000000000000000000000000000000000
  477. Binary files a/data/icons/hi16-actions-kalzium_tables.png and /dev/null differ
  478. diff --git a/data/icons/hi16-actions-legend.png b/data/icons/hi16-actions-legend.png
  479. deleted file mode 100644
  480. index 9e3b294143ae9442fbbb4c3319ef729d7f1fa7b0..0000000000000000000000000000000000000000
  481. Binary files a/data/icons/hi16-actions-legend.png and /dev/null differ
  482. diff --git a/data/icons/hi16-actions-misc.png b/data/icons/hi16-actions-misc.png
  483. deleted file mode 100644
  484. index 88f0b0b175c7b09883a6605a533dbe6dab3ba1e3..0000000000000000000000000000000000000000
  485. Binary files a/data/icons/hi16-actions-misc.png and /dev/null differ
  486. diff --git a/data/icons/hi16-actions-numbers.png b/data/icons/hi16-actions-numbers.png
  487. deleted file mode 100644
  488. index c303cc65cc0e1311a683d1d60993c06afbf8a4e4..0000000000000000000000000000000000000000
  489. Binary files a/data/icons/hi16-actions-numbers.png and /dev/null differ
  490. diff --git a/data/icons/hi16-actions-orbits.png b/data/icons/hi16-actions-orbits.png
  491. deleted file mode 100644
  492. index 797179528a7667cc822a71d12e5202e8df639183..0000000000000000000000000000000000000000
  493. Binary files a/data/icons/hi16-actions-orbits.png and /dev/null differ
  494. diff --git a/data/icons/hi16-actions-overview.png b/data/icons/hi16-actions-overview.png
  495. deleted file mode 100644
  496. index ab9fc7192bfb618225d46a961b156f407d3d3b66..0000000000000000000000000000000000000000
  497. Binary files a/data/icons/hi16-actions-overview.png and /dev/null differ
  498. diff --git a/data/icons/hi16-actions-plot.png b/data/icons/hi16-actions-plot.png
  499. deleted file mode 100644
  500. index 660d57c7829a0295e46bdd8922fb5e3843015517..0000000000000000000000000000000000000000
  501. Binary files a/data/icons/hi16-actions-plot.png and /dev/null differ
  502. diff --git a/data/icons/hi16-actions-sidebar.png b/data/icons/hi16-actions-sidebar.png
  503. deleted file mode 100644
  504. index 36eb464d1a2daaca61b91e2b975c86941112c6f6..0000000000000000000000000000000000000000
  505. Binary files a/data/icons/hi16-actions-sidebar.png and /dev/null differ
  506. diff --git a/data/icons/hi16-actions-spectrum.png b/data/icons/hi16-actions-spectrum.png
  507. deleted file mode 100644
  508. index 5a61b882d560e5c8895bd5946ebf49beb55c8e3c..0000000000000000000000000000000000000000
  509. Binary files a/data/icons/hi16-actions-spectrum.png and /dev/null differ
  510. diff --git a/data/icons/hi16-actions-statematter.png b/data/icons/hi16-actions-statematter.png
  511. deleted file mode 100644
  512. index d75e317ca89b5641b61217adaa3b564718217d83..0000000000000000000000000000000000000000
  513. Binary files a/data/icons/hi16-actions-statematter.png and /dev/null differ
  514. diff --git a/data/icons/hi16-actions-timeline.png b/data/icons/hi16-actions-timeline.png
  515. deleted file mode 100644
  516. index 0dedbf6d79043c9b2ea99a878671b07c02af7f30..0000000000000000000000000000000000000000
  517. Binary files a/data/icons/hi16-actions-timeline.png and /dev/null differ
  518. diff --git a/data/icons/hi16-actions-tooltip.png b/data/icons/hi16-actions-tooltip.png
  519. deleted file mode 100644
  520. index 6005b399fc1daf15c565b57cd481bd8e16573313..0000000000000000000000000000000000000000
  521. Binary files a/data/icons/hi16-actions-tooltip.png and /dev/null differ
  522. diff --git a/data/icons/hi22-action-calculate.png b/data/icons/hi22-action-calculate.png
  523. new file mode 100644
  524. index 0000000000000000000000000000000000000000..8c47c689297af0e4b37246bd737130588f05cc2b
  525. Binary files /dev/null and b/data/icons/hi22-action-calculate.png differ
  526. diff --git a/data/icons/hi22-action-chemical.png b/data/icons/hi22-action-chemical.png
  527. new file mode 100644
  528. index 0000000000000000000000000000000000000000..5ec49cc2293ae1d99f02661343086d0b52814674
  529. Binary files /dev/null and b/data/icons/hi22-action-chemical.png differ
  530. diff --git a/data/icons/hi22-action-elempic.png b/data/icons/hi22-action-elempic.png
  531. new file mode 100644
  532. index 0000000000000000000000000000000000000000..858a4f397531f6ce9a3e002bfb1c0c138a04df3e
  533. Binary files /dev/null and b/data/icons/hi22-action-elempic.png differ
  534. diff --git a/data/icons/hi22-action-energies.png b/data/icons/hi22-action-energies.png
  535. new file mode 100644
  536. index 0000000000000000000000000000000000000000..d643d6a8609c8c37326ac3dcd279ad03fa2a8b52
  537. Binary files /dev/null and b/data/icons/hi22-action-energies.png differ
  538. diff --git a/data/icons/hi22-action-eqchem.png b/data/icons/hi22-action-eqchem.png
  539. new file mode 100644
  540. index 0000000000000000000000000000000000000000..638b666ae0d097c89e2f8ea2749be285b7b38707
  541. Binary files /dev/null and b/data/icons/hi22-action-eqchem.png differ
  542. diff --git a/data/icons/hi22-action-glossary.png b/data/icons/hi22-action-glossary.png
  543. new file mode 100644
  544. index 0000000000000000000000000000000000000000..d88ee9090ceb51f11b762bf697aedbd45ada89db
  545. Binary files /dev/null and b/data/icons/hi22-action-glossary.png differ
  546. diff --git a/data/icons/hi22-action-isotopemap.png b/data/icons/hi22-action-isotopemap.png
  547. new file mode 100644
  548. index 0000000000000000000000000000000000000000..3dde99cc8b98eeb424b437b6ca060fc1442f5f76
  549. Binary files /dev/null and b/data/icons/hi22-action-isotopemap.png differ
  550. diff --git a/data/icons/hi22-action-kalzium_molviewer.png b/data/icons/hi22-action-kalzium_molviewer.png
  551. new file mode 100644
  552. index 0000000000000000000000000000000000000000..cfea02013ffda100005f79816e5588c9c20274dc
  553. Binary files /dev/null and b/data/icons/hi22-action-kalzium_molviewer.png differ
  554. diff --git a/data/icons/hi22-action-kalzium_rs.png b/data/icons/hi22-action-kalzium_rs.png
  555. new file mode 100644
  556. index 0000000000000000000000000000000000000000..0128d33489f7950e95a2f2cf4aef859e118757d8
  557. Binary files /dev/null and b/data/icons/hi22-action-kalzium_rs.png differ
  558. diff --git a/data/icons/hi22-action-kalzium_tables.png b/data/icons/hi22-action-kalzium_tables.png
  559. new file mode 100644
  560. index 0000000000000000000000000000000000000000..7e41ee54d62f11b7d249273d1a6bebae322b3cb1
  561. Binary files /dev/null and b/data/icons/hi22-action-kalzium_tables.png differ
  562. diff --git a/data/icons/hi22-action-legend.png b/data/icons/hi22-action-legend.png
  563. new file mode 100644
  564. index 0000000000000000000000000000000000000000..e63b8343b57614ccfcc4f63711bbbfce32a4a4cb
  565. Binary files /dev/null and b/data/icons/hi22-action-legend.png differ
  566. diff --git a/data/icons/hi22-action-numbers.png b/data/icons/hi22-action-numbers.png
  567. new file mode 100644
  568. index 0000000000000000000000000000000000000000..d2c6f9925abd51f612ca10a5ab27f087c3b2619e
  569. Binary files /dev/null and b/data/icons/hi22-action-numbers.png differ
  570. diff --git a/data/icons/hi22-action-orbits.png b/data/icons/hi22-action-orbits.png
  571. new file mode 100644
  572. index 0000000000000000000000000000000000000000..40706ab8b05afcd9ecfb877e86c093403f6c98dc
  573. Binary files /dev/null and b/data/icons/hi22-action-orbits.png differ
  574. diff --git a/data/icons/hi22-action-overview.png b/data/icons/hi22-action-overview.png
  575. new file mode 100644
  576. index 0000000000000000000000000000000000000000..85a1b46b0aeccedb52e224d9d13c3a8cb835f085
  577. Binary files /dev/null and b/data/icons/hi22-action-overview.png differ
  578. diff --git a/data/icons/hi22-action-plot.png b/data/icons/hi22-action-plot.png
  579. new file mode 100644
  580. index 0000000000000000000000000000000000000000..f8986729612e1429fab34db157bf85e593ed026d
  581. Binary files /dev/null and b/data/icons/hi22-action-plot.png differ
  582. diff --git a/data/icons/hi22-action-sidebar.png b/data/icons/hi22-action-sidebar.png
  583. new file mode 100644
  584. index 0000000000000000000000000000000000000000..d0a668dabf5dfaa860fba948fcff48108d5eaa3a
  585. Binary files /dev/null and b/data/icons/hi22-action-sidebar.png differ
  586. diff --git a/data/icons/hi22-action-spectrum.png b/data/icons/hi22-action-spectrum.png
  587. new file mode 100644
  588. index 0000000000000000000000000000000000000000..88b2c9b68e08dcac0d2e6007a2d0bb13cbb38104
  589. Binary files /dev/null and b/data/icons/hi22-action-spectrum.png differ
  590. diff --git a/data/icons/hi22-action-statematter.png b/data/icons/hi22-action-statematter.png
  591. new file mode 100644
  592. index 0000000000000000000000000000000000000000..1ec124726d29b9b1113bb57fb6102810e0fff1f9
  593. Binary files /dev/null and b/data/icons/hi22-action-statematter.png differ
  594. diff --git a/data/icons/hi22-action-timeline.png b/data/icons/hi22-action-timeline.png
  595. new file mode 100644
  596. index 0000000000000000000000000000000000000000..83ee6f65898fa39211a713d7191ad8b8f18cc6e9
  597. Binary files /dev/null and b/data/icons/hi22-action-timeline.png differ
  598. diff --git a/data/icons/hi22-action-tooltip.png b/data/icons/hi22-action-tooltip.png
  599. new file mode 100644
  600. index 0000000000000000000000000000000000000000..6ad67bee1a9456f8c1f7f4c2e78a3da3d6fa51a7
  601. Binary files /dev/null and b/data/icons/hi22-action-tooltip.png differ
  602. diff --git a/data/icons/hi22-actions-calculate.png b/data/icons/hi22-actions-calculate.png
  603. deleted file mode 100644
  604. index 8c47c689297af0e4b37246bd737130588f05cc2b..0000000000000000000000000000000000000000
  605. Binary files a/data/icons/hi22-actions-calculate.png and /dev/null differ
  606. diff --git a/data/icons/hi22-actions-chemical.png b/data/icons/hi22-actions-chemical.png
  607. deleted file mode 100644
  608. index 5ec49cc2293ae1d99f02661343086d0b52814674..0000000000000000000000000000000000000000
  609. Binary files a/data/icons/hi22-actions-chemical.png and /dev/null differ
  610. diff --git a/data/icons/hi22-actions-elempic.png b/data/icons/hi22-actions-elempic.png
  611. deleted file mode 100644
  612. index 858a4f397531f6ce9a3e002bfb1c0c138a04df3e..0000000000000000000000000000000000000000
  613. Binary files a/data/icons/hi22-actions-elempic.png and /dev/null differ
  614. diff --git a/data/icons/hi22-actions-energies.png b/data/icons/hi22-actions-energies.png
  615. deleted file mode 100644
  616. index d643d6a8609c8c37326ac3dcd279ad03fa2a8b52..0000000000000000000000000000000000000000
  617. Binary files a/data/icons/hi22-actions-energies.png and /dev/null differ
  618. diff --git a/data/icons/hi22-actions-eqchem.png b/data/icons/hi22-actions-eqchem.png
  619. deleted file mode 100644
  620. index 638b666ae0d097c89e2f8ea2749be285b7b38707..0000000000000000000000000000000000000000
  621. Binary files a/data/icons/hi22-actions-eqchem.png and /dev/null differ
  622. diff --git a/data/icons/hi22-actions-glossary.png b/data/icons/hi22-actions-glossary.png
  623. deleted file mode 100644
  624. index d88ee9090ceb51f11b762bf697aedbd45ada89db..0000000000000000000000000000000000000000
  625. Binary files a/data/icons/hi22-actions-glossary.png and /dev/null differ
  626. diff --git a/data/icons/hi22-actions-isotopemap.png b/data/icons/hi22-actions-isotopemap.png
  627. deleted file mode 100644
  628. index 3dde99cc8b98eeb424b437b6ca060fc1442f5f76..0000000000000000000000000000000000000000
  629. Binary files a/data/icons/hi22-actions-isotopemap.png and /dev/null differ
  630. diff --git a/data/icons/hi22-actions-kalzium_molviewer.png b/data/icons/hi22-actions-kalzium_molviewer.png
  631. deleted file mode 100644
  632. index cfea02013ffda100005f79816e5588c9c20274dc..0000000000000000000000000000000000000000
  633. Binary files a/data/icons/hi22-actions-kalzium_molviewer.png and /dev/null differ
  634. diff --git a/data/icons/hi22-actions-kalzium_rs.png b/data/icons/hi22-actions-kalzium_rs.png
  635. deleted file mode 100644
  636. index 0128d33489f7950e95a2f2cf4aef859e118757d8..0000000000000000000000000000000000000000
  637. Binary files a/data/icons/hi22-actions-kalzium_rs.png and /dev/null differ
  638. diff --git a/data/icons/hi22-actions-kalzium_tables.png b/data/icons/hi22-actions-kalzium_tables.png
  639. deleted file mode 100644
  640. index 7e41ee54d62f11b7d249273d1a6bebae322b3cb1..0000000000000000000000000000000000000000
  641. Binary files a/data/icons/hi22-actions-kalzium_tables.png and /dev/null differ
  642. diff --git a/data/icons/hi22-actions-legend.png b/data/icons/hi22-actions-legend.png
  643. deleted file mode 100644
  644. index e63b8343b57614ccfcc4f63711bbbfce32a4a4cb..0000000000000000000000000000000000000000
  645. Binary files a/data/icons/hi22-actions-legend.png and /dev/null differ
  646. diff --git a/data/icons/hi22-actions-numbers.png b/data/icons/hi22-actions-numbers.png
  647. deleted file mode 100644
  648. index d2c6f9925abd51f612ca10a5ab27f087c3b2619e..0000000000000000000000000000000000000000
  649. Binary files a/data/icons/hi22-actions-numbers.png and /dev/null differ
  650. diff --git a/data/icons/hi22-actions-orbits.png b/data/icons/hi22-actions-orbits.png
  651. deleted file mode 100644
  652. index 40706ab8b05afcd9ecfb877e86c093403f6c98dc..0000000000000000000000000000000000000000
  653. Binary files a/data/icons/hi22-actions-orbits.png and /dev/null differ
  654. diff --git a/data/icons/hi22-actions-overview.png b/data/icons/hi22-actions-overview.png
  655. deleted file mode 100644
  656. index 85a1b46b0aeccedb52e224d9d13c3a8cb835f085..0000000000000000000000000000000000000000
  657. Binary files a/data/icons/hi22-actions-overview.png and /dev/null differ
  658. diff --git a/data/icons/hi22-actions-plot.png b/data/icons/hi22-actions-plot.png
  659. deleted file mode 100644
  660. index f8986729612e1429fab34db157bf85e593ed026d..0000000000000000000000000000000000000000
  661. Binary files a/data/icons/hi22-actions-plot.png and /dev/null differ
  662. diff --git a/data/icons/hi22-actions-sidebar.png b/data/icons/hi22-actions-sidebar.png
  663. deleted file mode 100644
  664. index d0a668dabf5dfaa860fba948fcff48108d5eaa3a..0000000000000000000000000000000000000000
  665. Binary files a/data/icons/hi22-actions-sidebar.png and /dev/null differ
  666. diff --git a/data/icons/hi22-actions-spectrum.png b/data/icons/hi22-actions-spectrum.png
  667. deleted file mode 100644
  668. index 88b2c9b68e08dcac0d2e6007a2d0bb13cbb38104..0000000000000000000000000000000000000000
  669. Binary files a/data/icons/hi22-actions-spectrum.png and /dev/null differ
  670. diff --git a/data/icons/hi22-actions-statematter.png b/data/icons/hi22-actions-statematter.png
  671. deleted file mode 100644
  672. index 1ec124726d29b9b1113bb57fb6102810e0fff1f9..0000000000000000000000000000000000000000
  673. Binary files a/data/icons/hi22-actions-statematter.png and /dev/null differ
  674. diff --git a/data/icons/hi22-actions-timeline.png b/data/icons/hi22-actions-timeline.png
  675. deleted file mode 100644
  676. index 83ee6f65898fa39211a713d7191ad8b8f18cc6e9..0000000000000000000000000000000000000000
  677. Binary files a/data/icons/hi22-actions-timeline.png and /dev/null differ
  678. diff --git a/data/icons/hi22-actions-tooltip.png b/data/icons/hi22-actions-tooltip.png
  679. deleted file mode 100644
  680. index 6ad67bee1a9456f8c1f7f4c2e78a3da3d6fa51a7..0000000000000000000000000000000000000000
  681. Binary files a/data/icons/hi22-actions-tooltip.png and /dev/null differ
  682. diff --git a/data/icons/hi32-action-calculate.png b/data/icons/hi32-action-calculate.png
  683. new file mode 100644
  684. index 0000000000000000000000000000000000000000..1b1dd1e44dbf286667d71b20d0eb1a42b29a23ed
  685. Binary files /dev/null and b/data/icons/hi32-action-calculate.png differ
  686. diff --git a/data/icons/hi32-action-chemical.png b/data/icons/hi32-action-chemical.png
  687. new file mode 100644
  688. index 0000000000000000000000000000000000000000..e88b4830f215ea5b21ccc6a1a83c2b0590ae6629
  689. Binary files /dev/null and b/data/icons/hi32-action-chemical.png differ
  690. diff --git a/data/icons/hi32-action-elempic.png b/data/icons/hi32-action-elempic.png
  691. new file mode 100644
  692. index 0000000000000000000000000000000000000000..8f58c968566673c8cce12f6e5d223643b99202f9
  693. Binary files /dev/null and b/data/icons/hi32-action-elempic.png differ
  694. diff --git a/data/icons/hi32-action-energies.png b/data/icons/hi32-action-energies.png
  695. new file mode 100644
  696. index 0000000000000000000000000000000000000000..1dfd68ff52bcae17cebffc86fc2c6cede64f4b3e
  697. Binary files /dev/null and b/data/icons/hi32-action-energies.png differ
  698. diff --git a/data/icons/hi32-action-eqchem.png b/data/icons/hi32-action-eqchem.png
  699. new file mode 100644
  700. index 0000000000000000000000000000000000000000..fea9d64f6a1302fe44beabd593e04f63968045f2
  701. Binary files /dev/null and b/data/icons/hi32-action-eqchem.png differ
  702. diff --git a/data/icons/hi32-action-glossary.png b/data/icons/hi32-action-glossary.png
  703. new file mode 100644
  704. index 0000000000000000000000000000000000000000..8c3c9b3e38fe02404d0b13fe2047bbad582d3cb3
  705. Binary files /dev/null and b/data/icons/hi32-action-glossary.png differ
  706. diff --git a/data/icons/hi32-action-isotopemap.png b/data/icons/hi32-action-isotopemap.png
  707. new file mode 100644
  708. index 0000000000000000000000000000000000000000..eb0b3196a460ac3e4b1bd2b6f892bfe213b3bd66
  709. Binary files /dev/null and b/data/icons/hi32-action-isotopemap.png differ
  710. diff --git a/data/icons/hi32-action-kalzium_molviewer.png b/data/icons/hi32-action-kalzium_molviewer.png
  711. new file mode 100644
  712. index 0000000000000000000000000000000000000000..9834b0e258082996be9c77136909b701fd4afa03
  713. Binary files /dev/null and b/data/icons/hi32-action-kalzium_molviewer.png differ
  714. diff --git a/data/icons/hi32-action-kalzium_rs.png b/data/icons/hi32-action-kalzium_rs.png
  715. new file mode 100644
  716. index 0000000000000000000000000000000000000000..c8db2f8a674f81fdfa8f84520fdf4faa8da376f8
  717. Binary files /dev/null and b/data/icons/hi32-action-kalzium_rs.png differ
  718. diff --git a/data/icons/hi32-action-kalzium_tables.png b/data/icons/hi32-action-kalzium_tables.png
  719. new file mode 100644
  720. index 0000000000000000000000000000000000000000..b35ff12a789919cdc26b5fea534ad2787f2eba54
  721. Binary files /dev/null and b/data/icons/hi32-action-kalzium_tables.png differ
  722. diff --git a/data/icons/hi32-action-legend.png b/data/icons/hi32-action-legend.png
  723. new file mode 100644
  724. index 0000000000000000000000000000000000000000..6922a4e3bcd4594eb87f8453bd06aa9e78228c8d
  725. Binary files /dev/null and b/data/icons/hi32-action-legend.png differ
  726. diff --git a/data/icons/hi32-action-misc.png b/data/icons/hi32-action-misc.png
  727. new file mode 100644
  728. index 0000000000000000000000000000000000000000..16c72648f02b5e9bcc18c63fb43d99b0381a5e4e
  729. Binary files /dev/null and b/data/icons/hi32-action-misc.png differ
  730. diff --git a/data/icons/hi32-action-numbers.png b/data/icons/hi32-action-numbers.png
  731. new file mode 100644
  732. index 0000000000000000000000000000000000000000..3d322fb63802de7fe9f1d1af72365e2612bb683d
  733. Binary files /dev/null and b/data/icons/hi32-action-numbers.png differ
  734. diff --git a/data/icons/hi32-action-orbits.png b/data/icons/hi32-action-orbits.png
  735. new file mode 100644
  736. index 0000000000000000000000000000000000000000..abba256ac9f38866b018151fde084c0ee903f174
  737. Binary files /dev/null and b/data/icons/hi32-action-orbits.png differ
  738. diff --git a/data/icons/hi32-action-overview.png b/data/icons/hi32-action-overview.png
  739. new file mode 100644
  740. index 0000000000000000000000000000000000000000..d09cdcfbcf75044040fe1dc531aa2ef1661240fc
  741. Binary files /dev/null and b/data/icons/hi32-action-overview.png differ
  742. diff --git a/data/icons/hi32-action-plot.png b/data/icons/hi32-action-plot.png
  743. new file mode 100644
  744. index 0000000000000000000000000000000000000000..706eadbd8b4f027c5e57d876f8a9a56f584dc382
  745. Binary files /dev/null and b/data/icons/hi32-action-plot.png differ
  746. diff --git a/data/icons/hi32-action-sidebar.png b/data/icons/hi32-action-sidebar.png
  747. new file mode 100644
  748. index 0000000000000000000000000000000000000000..69413d91de3de93b4e417850d5500ee4377f631b
  749. Binary files /dev/null and b/data/icons/hi32-action-sidebar.png differ
  750. diff --git a/data/icons/hi32-action-spectrum.png b/data/icons/hi32-action-spectrum.png
  751. new file mode 100644
  752. index 0000000000000000000000000000000000000000..1b5924b203d4834db23a663bf5672a24833f5c98
  753. Binary files /dev/null and b/data/icons/hi32-action-spectrum.png differ
  754. diff --git a/data/icons/hi32-action-statematter.png b/data/icons/hi32-action-statematter.png
  755. new file mode 100644
  756. index 0000000000000000000000000000000000000000..36fc67cc8beecc0b98b73b0691be77d3613f6458
  757. Binary files /dev/null and b/data/icons/hi32-action-statematter.png differ
  758. diff --git a/data/icons/hi32-action-timeline.png b/data/icons/hi32-action-timeline.png
  759. new file mode 100644
  760. index 0000000000000000000000000000000000000000..f0dc75d810ebac4e806a7d59acfb90aa3d631e4e
  761. Binary files /dev/null and b/data/icons/hi32-action-timeline.png differ
  762. diff --git a/data/icons/hi32-action-tooltip.png b/data/icons/hi32-action-tooltip.png
  763. new file mode 100644
  764. index 0000000000000000000000000000000000000000..67c02f003bec9ad50d12b8e8c9bb754423fc6c5c
  765. Binary files /dev/null and b/data/icons/hi32-action-tooltip.png differ
  766. diff --git a/data/icons/hi32-actions-calculate.png b/data/icons/hi32-actions-calculate.png
  767. deleted file mode 100644
  768. index 1b1dd1e44dbf286667d71b20d0eb1a42b29a23ed..0000000000000000000000000000000000000000
  769. Binary files a/data/icons/hi32-actions-calculate.png and /dev/null differ
  770. diff --git a/data/icons/hi32-actions-chemical.png b/data/icons/hi32-actions-chemical.png
  771. deleted file mode 100644
  772. index e88b4830f215ea5b21ccc6a1a83c2b0590ae6629..0000000000000000000000000000000000000000
  773. Binary files a/data/icons/hi32-actions-chemical.png and /dev/null differ
  774. diff --git a/data/icons/hi32-actions-elempic.png b/data/icons/hi32-actions-elempic.png
  775. deleted file mode 100644
  776. index 8f58c968566673c8cce12f6e5d223643b99202f9..0000000000000000000000000000000000000000
  777. Binary files a/data/icons/hi32-actions-elempic.png and /dev/null differ
  778. diff --git a/data/icons/hi32-actions-energies.png b/data/icons/hi32-actions-energies.png
  779. deleted file mode 100644
  780. index 1dfd68ff52bcae17cebffc86fc2c6cede64f4b3e..0000000000000000000000000000000000000000
  781. Binary files a/data/icons/hi32-actions-energies.png and /dev/null differ
  782. diff --git a/data/icons/hi32-actions-eqchem.png b/data/icons/hi32-actions-eqchem.png
  783. deleted file mode 100644
  784. index fea9d64f6a1302fe44beabd593e04f63968045f2..0000000000000000000000000000000000000000
  785. Binary files a/data/icons/hi32-actions-eqchem.png and /dev/null differ
  786. diff --git a/data/icons/hi32-actions-glossary.png b/data/icons/hi32-actions-glossary.png
  787. deleted file mode 100644
  788. index 8c3c9b3e38fe02404d0b13fe2047bbad582d3cb3..0000000000000000000000000000000000000000
  789. Binary files a/data/icons/hi32-actions-glossary.png and /dev/null differ
  790. diff --git a/data/icons/hi32-actions-isotopemap.png b/data/icons/hi32-actions-isotopemap.png
  791. deleted file mode 100644
  792. index eb0b3196a460ac3e4b1bd2b6f892bfe213b3bd66..0000000000000000000000000000000000000000
  793. Binary files a/data/icons/hi32-actions-isotopemap.png and /dev/null differ
  794. diff --git a/data/icons/hi32-actions-kalzium_molviewer.png b/data/icons/hi32-actions-kalzium_molviewer.png
  795. deleted file mode 100644
  796. index 9834b0e258082996be9c77136909b701fd4afa03..0000000000000000000000000000000000000000
  797. Binary files a/data/icons/hi32-actions-kalzium_molviewer.png and /dev/null differ
  798. diff --git a/data/icons/hi32-actions-kalzium_rs.png b/data/icons/hi32-actions-kalzium_rs.png
  799. deleted file mode 100644
  800. index c8db2f8a674f81fdfa8f84520fdf4faa8da376f8..0000000000000000000000000000000000000000
  801. Binary files a/data/icons/hi32-actions-kalzium_rs.png and /dev/null differ
  802. diff --git a/data/icons/hi32-actions-kalzium_tables.png b/data/icons/hi32-actions-kalzium_tables.png
  803. deleted file mode 100644
  804. index b35ff12a789919cdc26b5fea534ad2787f2eba54..0000000000000000000000000000000000000000
  805. Binary files a/data/icons/hi32-actions-kalzium_tables.png and /dev/null differ
  806. diff --git a/data/icons/hi32-actions-legend.png b/data/icons/hi32-actions-legend.png
  807. deleted file mode 100644
  808. index 6922a4e3bcd4594eb87f8453bd06aa9e78228c8d..0000000000000000000000000000000000000000
  809. Binary files a/data/icons/hi32-actions-legend.png and /dev/null differ
  810. diff --git a/data/icons/hi32-actions-misc.png b/data/icons/hi32-actions-misc.png
  811. deleted file mode 100644
  812. index 16c72648f02b5e9bcc18c63fb43d99b0381a5e4e..0000000000000000000000000000000000000000
  813. Binary files a/data/icons/hi32-actions-misc.png and /dev/null differ
  814. diff --git a/data/icons/hi32-actions-numbers.png b/data/icons/hi32-actions-numbers.png
  815. deleted file mode 100644
  816. index 3d322fb63802de7fe9f1d1af72365e2612bb683d..0000000000000000000000000000000000000000
  817. Binary files a/data/icons/hi32-actions-numbers.png and /dev/null differ
  818. diff --git a/data/icons/hi32-actions-orbits.png b/data/icons/hi32-actions-orbits.png
  819. deleted file mode 100644
  820. index abba256ac9f38866b018151fde084c0ee903f174..0000000000000000000000000000000000000000
  821. Binary files a/data/icons/hi32-actions-orbits.png and /dev/null differ
  822. diff --git a/data/icons/hi32-actions-overview.png b/data/icons/hi32-actions-overview.png
  823. deleted file mode 100644
  824. index d09cdcfbcf75044040fe1dc531aa2ef1661240fc..0000000000000000000000000000000000000000
  825. Binary files a/data/icons/hi32-actions-overview.png and /dev/null differ
  826. diff --git a/data/icons/hi32-actions-plot.png b/data/icons/hi32-actions-plot.png
  827. deleted file mode 100644
  828. index 706eadbd8b4f027c5e57d876f8a9a56f584dc382..0000000000000000000000000000000000000000
  829. Binary files a/data/icons/hi32-actions-plot.png and /dev/null differ
  830. diff --git a/data/icons/hi32-actions-sidebar.png b/data/icons/hi32-actions-sidebar.png
  831. deleted file mode 100644
  832. index 69413d91de3de93b4e417850d5500ee4377f631b..0000000000000000000000000000000000000000
  833. Binary files a/data/icons/hi32-actions-sidebar.png and /dev/null differ
  834. diff --git a/data/icons/hi32-actions-spectrum.png b/data/icons/hi32-actions-spectrum.png
  835. deleted file mode 100644
  836. index 1b5924b203d4834db23a663bf5672a24833f5c98..0000000000000000000000000000000000000000
  837. Binary files a/data/icons/hi32-actions-spectrum.png and /dev/null differ
  838. diff --git a/data/icons/hi32-actions-statematter.png b/data/icons/hi32-actions-statematter.png
  839. deleted file mode 100644
  840. index 36fc67cc8beecc0b98b73b0691be77d3613f6458..0000000000000000000000000000000000000000
  841. Binary files a/data/icons/hi32-actions-statematter.png and /dev/null differ
  842. diff --git a/data/icons/hi32-actions-timeline.png b/data/icons/hi32-actions-timeline.png
  843. deleted file mode 100644
  844. index f0dc75d810ebac4e806a7d59acfb90aa3d631e4e..0000000000000000000000000000000000000000
  845. Binary files a/data/icons/hi32-actions-timeline.png and /dev/null differ
  846. diff --git a/data/icons/hi32-actions-tooltip.png b/data/icons/hi32-actions-tooltip.png
  847. deleted file mode 100644
  848. index 67c02f003bec9ad50d12b8e8c9bb754423fc6c5c..0000000000000000000000000000000000000000
  849. Binary files a/data/icons/hi32-actions-tooltip.png and /dev/null differ
  850. diff --git a/data/icons/hi48-action-calculate.png b/data/icons/hi48-action-calculate.png
  851. new file mode 100644
  852. index 0000000000000000000000000000000000000000..13e3afa2bffa6868d4aa727223f7220baa64d258
  853. Binary files /dev/null and b/data/icons/hi48-action-calculate.png differ
  854. diff --git a/data/icons/hi48-action-chemical.png b/data/icons/hi48-action-chemical.png
  855. new file mode 100644
  856. index 0000000000000000000000000000000000000000..9585a49320f43ddc4ae5d65fa813a3e94983337a
  857. Binary files /dev/null and b/data/icons/hi48-action-chemical.png differ
  858. diff --git a/data/icons/hi48-action-energies.png b/data/icons/hi48-action-energies.png
  859. new file mode 100644
  860. index 0000000000000000000000000000000000000000..f57de6657d536697ce5c9415ae68e10dd075f21f
  861. Binary files /dev/null and b/data/icons/hi48-action-energies.png differ
  862. diff --git a/data/icons/hi48-action-eqchem.png b/data/icons/hi48-action-eqchem.png
  863. new file mode 100644
  864. index 0000000000000000000000000000000000000000..dcfb42a12c88bb876dee88da955bc3f6134f2599
  865. Binary files /dev/null and b/data/icons/hi48-action-eqchem.png differ
  866. diff --git a/data/icons/hi48-action-glossary.png b/data/icons/hi48-action-glossary.png
  867. new file mode 100644
  868. index 0000000000000000000000000000000000000000..b375f8b54d34e398ab175d5c30b869aa2934bc3b
  869. Binary files /dev/null and b/data/icons/hi48-action-glossary.png differ
  870. diff --git a/data/icons/hi48-action-isotopemap.png b/data/icons/hi48-action-isotopemap.png
  871. new file mode 100644
  872. index 0000000000000000000000000000000000000000..989859c6086350f0eeb04854792a332c891f5f90
  873. Binary files /dev/null and b/data/icons/hi48-action-isotopemap.png differ
  874. diff --git a/data/icons/hi48-action-kalzium_molviewer.png b/data/icons/hi48-action-kalzium_molviewer.png
  875. new file mode 100644
  876. index 0000000000000000000000000000000000000000..145993563f8929067f163d76a34fa6e8088c5d27
  877. Binary files /dev/null and b/data/icons/hi48-action-kalzium_molviewer.png differ
  878. diff --git a/data/icons/hi48-action-kalzium_rs.png b/data/icons/hi48-action-kalzium_rs.png
  879. new file mode 100644
  880. index 0000000000000000000000000000000000000000..a2d79678db4912d0e1c52696559395fd4c3264bb
  881. Binary files /dev/null and b/data/icons/hi48-action-kalzium_rs.png differ
  882. diff --git a/data/icons/hi48-action-kalzium_tables.png b/data/icons/hi48-action-kalzium_tables.png
  883. new file mode 100644
  884. index 0000000000000000000000000000000000000000..40d4d1bd2b7bfc0e8ef1733f2bcc8d22997eb965
  885. Binary files /dev/null and b/data/icons/hi48-action-kalzium_tables.png differ
  886. diff --git a/data/icons/hi48-action-legend.png b/data/icons/hi48-action-legend.png
  887. new file mode 100644
  888. index 0000000000000000000000000000000000000000..e6b682d9af2da45fbd1f0116cfd626c479502e19
  889. Binary files /dev/null and b/data/icons/hi48-action-legend.png differ
  890. diff --git a/data/icons/hi48-action-misc.png b/data/icons/hi48-action-misc.png
  891. new file mode 100644
  892. index 0000000000000000000000000000000000000000..f30615db019d7f05b85f71e0ed9c0d660aa474f5
  893. Binary files /dev/null and b/data/icons/hi48-action-misc.png differ
  894. diff --git a/data/icons/hi48-action-numbers.png b/data/icons/hi48-action-numbers.png
  895. new file mode 100644
  896. index 0000000000000000000000000000000000000000..4a7ba76cf21ed6a1cd47b8a57d6ece3c16303b11
  897. Binary files /dev/null and b/data/icons/hi48-action-numbers.png differ
  898. diff --git a/data/icons/hi48-action-orbits.png b/data/icons/hi48-action-orbits.png
  899. new file mode 100644
  900. index 0000000000000000000000000000000000000000..99c4e25419454ab0e2164270498eeb6d9f0d195b
  901. Binary files /dev/null and b/data/icons/hi48-action-orbits.png differ
  902. diff --git a/data/icons/hi48-action-overview.png b/data/icons/hi48-action-overview.png
  903. new file mode 100644
  904. index 0000000000000000000000000000000000000000..e59aab43689eb84f42491fcc34776e17f21d6bee
  905. Binary files /dev/null and b/data/icons/hi48-action-overview.png differ
  906. diff --git a/data/icons/hi48-action-plot.png b/data/icons/hi48-action-plot.png
  907. new file mode 100644
  908. index 0000000000000000000000000000000000000000..2bd202fc3ed2632bd2dba299e2b594574c3ff438
  909. Binary files /dev/null and b/data/icons/hi48-action-plot.png differ
  910. diff --git a/data/icons/hi48-action-sidebar.png b/data/icons/hi48-action-sidebar.png
  911. new file mode 100644
  912. index 0000000000000000000000000000000000000000..13729ce90171ba62c25039ebb34b74baf63abbf3
  913. Binary files /dev/null and b/data/icons/hi48-action-sidebar.png differ
  914. diff --git a/data/icons/hi48-action-spectrum.png b/data/icons/hi48-action-spectrum.png
  915. new file mode 100644
  916. index 0000000000000000000000000000000000000000..3d0f2a55fc4d8034caad07c6ccb0fb06c4f07371
  917. Binary files /dev/null and b/data/icons/hi48-action-spectrum.png differ
  918. diff --git a/data/icons/hi48-action-statematter.png b/data/icons/hi48-action-statematter.png
  919. new file mode 100644
  920. index 0000000000000000000000000000000000000000..e6d3f77286203b7331bc13e9fd8ae85cf27b4c21
  921. Binary files /dev/null and b/data/icons/hi48-action-statematter.png differ
  922. diff --git a/data/icons/hi48-action-timeline.png b/data/icons/hi48-action-timeline.png
  923. new file mode 100644
  924. index 0000000000000000000000000000000000000000..ce8a111b0ae69d8018073e9c553a1695acf35269
  925. Binary files /dev/null and b/data/icons/hi48-action-timeline.png differ
  926. diff --git a/data/icons/hi48-action-tooltip.png b/data/icons/hi48-action-tooltip.png
  927. new file mode 100644
  928. index 0000000000000000000000000000000000000000..06890e9da49fc5b7bfab509328fb946cb9a8cf19
  929. Binary files /dev/null and b/data/icons/hi48-action-tooltip.png differ
  930. diff --git a/data/icons/hi48-actions-calculate.png b/data/icons/hi48-actions-calculate.png
  931. deleted file mode 100644
  932. index 13e3afa2bffa6868d4aa727223f7220baa64d258..0000000000000000000000000000000000000000
  933. Binary files a/data/icons/hi48-actions-calculate.png and /dev/null differ
  934. diff --git a/data/icons/hi48-actions-chemical.png b/data/icons/hi48-actions-chemical.png
  935. deleted file mode 100644
  936. index 9585a49320f43ddc4ae5d65fa813a3e94983337a..0000000000000000000000000000000000000000
  937. Binary files a/data/icons/hi48-actions-chemical.png and /dev/null differ
  938. diff --git a/data/icons/hi48-actions-energies.png b/data/icons/hi48-actions-energies.png
  939. deleted file mode 100644
  940. index f57de6657d536697ce5c9415ae68e10dd075f21f..0000000000000000000000000000000000000000
  941. Binary files a/data/icons/hi48-actions-energies.png and /dev/null differ
  942. diff --git a/data/icons/hi48-actions-eqchem.png b/data/icons/hi48-actions-eqchem.png
  943. deleted file mode 100644
  944. index dcfb42a12c88bb876dee88da955bc3f6134f2599..0000000000000000000000000000000000000000
  945. Binary files a/data/icons/hi48-actions-eqchem.png and /dev/null differ
  946. diff --git a/data/icons/hi48-actions-glossary.png b/data/icons/hi48-actions-glossary.png
  947. deleted file mode 100644
  948. index b375f8b54d34e398ab175d5c30b869aa2934bc3b..0000000000000000000000000000000000000000
  949. Binary files a/data/icons/hi48-actions-glossary.png and /dev/null differ
  950. diff --git a/data/icons/hi48-actions-isotopemap.png b/data/icons/hi48-actions-isotopemap.png
  951. deleted file mode 100644
  952. index 989859c6086350f0eeb04854792a332c891f5f90..0000000000000000000000000000000000000000
  953. Binary files a/data/icons/hi48-actions-isotopemap.png and /dev/null differ
  954. diff --git a/data/icons/hi48-actions-kalzium_molviewer.png b/data/icons/hi48-actions-kalzium_molviewer.png
  955. deleted file mode 100644
  956. index 145993563f8929067f163d76a34fa6e8088c5d27..0000000000000000000000000000000000000000
  957. Binary files a/data/icons/hi48-actions-kalzium_molviewer.png and /dev/null differ
  958. diff --git a/data/icons/hi48-actions-kalzium_rs.png b/data/icons/hi48-actions-kalzium_rs.png
  959. deleted file mode 100644
  960. index a2d79678db4912d0e1c52696559395fd4c3264bb..0000000000000000000000000000000000000000
  961. Binary files a/data/icons/hi48-actions-kalzium_rs.png and /dev/null differ
  962. diff --git a/data/icons/hi48-actions-kalzium_tables.png b/data/icons/hi48-actions-kalzium_tables.png
  963. deleted file mode 100644
  964. index 40d4d1bd2b7bfc0e8ef1733f2bcc8d22997eb965..0000000000000000000000000000000000000000
  965. Binary files a/data/icons/hi48-actions-kalzium_tables.png and /dev/null differ
  966. diff --git a/data/icons/hi48-actions-legend.png b/data/icons/hi48-actions-legend.png
  967. deleted file mode 100644
  968. index e6b682d9af2da45fbd1f0116cfd626c479502e19..0000000000000000000000000000000000000000
  969. Binary files a/data/icons/hi48-actions-legend.png and /dev/null differ
  970. diff --git a/data/icons/hi48-actions-misc.png b/data/icons/hi48-actions-misc.png
  971. deleted file mode 100644
  972. index f30615db019d7f05b85f71e0ed9c0d660aa474f5..0000000000000000000000000000000000000000
  973. Binary files a/data/icons/hi48-actions-misc.png and /dev/null differ
  974. diff --git a/data/icons/hi48-actions-numbers.png b/data/icons/hi48-actions-numbers.png
  975. deleted file mode 100644
  976. index 4a7ba76cf21ed6a1cd47b8a57d6ece3c16303b11..0000000000000000000000000000000000000000
  977. Binary files a/data/icons/hi48-actions-numbers.png and /dev/null differ
  978. diff --git a/data/icons/hi48-actions-orbits.png b/data/icons/hi48-actions-orbits.png
  979. deleted file mode 100644
  980. index 99c4e25419454ab0e2164270498eeb6d9f0d195b..0000000000000000000000000000000000000000
  981. Binary files a/data/icons/hi48-actions-orbits.png and /dev/null differ
  982. diff --git a/data/icons/hi48-actions-overview.png b/data/icons/hi48-actions-overview.png
  983. deleted file mode 100644
  984. index e59aab43689eb84f42491fcc34776e17f21d6bee..0000000000000000000000000000000000000000
  985. Binary files a/data/icons/hi48-actions-overview.png and /dev/null differ
  986. diff --git a/data/icons/hi48-actions-plot.png b/data/icons/hi48-actions-plot.png
  987. deleted file mode 100644
  988. index 2bd202fc3ed2632bd2dba299e2b594574c3ff438..0000000000000000000000000000000000000000
  989. Binary files a/data/icons/hi48-actions-plot.png and /dev/null differ
  990. diff --git a/data/icons/hi48-actions-sidebar.png b/data/icons/hi48-actions-sidebar.png
  991. deleted file mode 100644
  992. index 13729ce90171ba62c25039ebb34b74baf63abbf3..0000000000000000000000000000000000000000
  993. Binary files a/data/icons/hi48-actions-sidebar.png and /dev/null differ
  994. diff --git a/data/icons/hi48-actions-spectrum.png b/data/icons/hi48-actions-spectrum.png
  995. deleted file mode 100644
  996. index 3d0f2a55fc4d8034caad07c6ccb0fb06c4f07371..0000000000000000000000000000000000000000
  997. Binary files a/data/icons/hi48-actions-spectrum.png and /dev/null differ
  998. diff --git a/data/icons/hi48-actions-statematter.png b/data/icons/hi48-actions-statematter.png
  999. deleted file mode 100644
  1000. index e6d3f77286203b7331bc13e9fd8ae85cf27b4c21..0000000000000000000000000000000000000000
  1001. Binary files a/data/icons/hi48-actions-statematter.png and /dev/null differ
  1002. diff --git a/data/icons/hi48-actions-timeline.png b/data/icons/hi48-actions-timeline.png
  1003. deleted file mode 100644
  1004. index ce8a111b0ae69d8018073e9c553a1695acf35269..0000000000000000000000000000000000000000
  1005. Binary files a/data/icons/hi48-actions-timeline.png and /dev/null differ
  1006. diff --git a/data/icons/hi48-actions-tooltip.png b/data/icons/hi48-actions-tooltip.png
  1007. deleted file mode 100644
  1008. index 06890e9da49fc5b7bfab509328fb946cb9a8cf19..0000000000000000000000000000000000000000
  1009. Binary files a/data/icons/hi48-actions-tooltip.png and /dev/null differ
  1010. diff --git a/data/icons/hi64-action-kalzium_molviewer.png b/data/icons/hi64-action-kalzium_molviewer.png
  1011. new file mode 100644
  1012. index 0000000000000000000000000000000000000000..c792a32f09324fa86e225cd55fd619db69a3d46e
  1013. Binary files /dev/null and b/data/icons/hi64-action-kalzium_molviewer.png differ
  1014. diff --git a/data/icons/hi64-action-kalzium_rs.png b/data/icons/hi64-action-kalzium_rs.png
  1015. new file mode 100644
  1016. index 0000000000000000000000000000000000000000..55fc832ec8022c3192a2c594b0ccb64c172d85d3
  1017. Binary files /dev/null and b/data/icons/hi64-action-kalzium_rs.png differ
  1018. diff --git a/data/icons/hi64-action-kalzium_tables.png b/data/icons/hi64-action-kalzium_tables.png
  1019. new file mode 100644
  1020. index 0000000000000000000000000000000000000000..17cb8fa989c7ecb244ec00fbdb0ed0b097e60aee
  1021. Binary files /dev/null and b/data/icons/hi64-action-kalzium_tables.png differ
  1022. diff --git a/data/icons/hi64-action-numbers.png b/data/icons/hi64-action-numbers.png
  1023. new file mode 100644
  1024. index 0000000000000000000000000000000000000000..7fbe94b22e4c53aeb00f41e82d9ed25b956d118a
  1025. Binary files /dev/null and b/data/icons/hi64-action-numbers.png differ
  1026. diff --git a/data/icons/hi64-actions-kalzium_molviewer.png b/data/icons/hi64-actions-kalzium_molviewer.png
  1027. deleted file mode 100644
  1028. index c792a32f09324fa86e225cd55fd619db69a3d46e..0000000000000000000000000000000000000000
  1029. Binary files a/data/icons/hi64-actions-kalzium_molviewer.png and /dev/null differ
  1030. diff --git a/data/icons/hi64-actions-kalzium_rs.png b/data/icons/hi64-actions-kalzium_rs.png
  1031. deleted file mode 100644
  1032. index 55fc832ec8022c3192a2c594b0ccb64c172d85d3..0000000000000000000000000000000000000000
  1033. Binary files a/data/icons/hi64-actions-kalzium_rs.png and /dev/null differ
  1034. diff --git a/data/icons/hi64-actions-kalzium_tables.png b/data/icons/hi64-actions-kalzium_tables.png
  1035. deleted file mode 100644
  1036. index 17cb8fa989c7ecb244ec00fbdb0ed0b097e60aee..0000000000000000000000000000000000000000
  1037. Binary files a/data/icons/hi64-actions-kalzium_tables.png and /dev/null differ
  1038. diff --git a/data/icons/hi64-actions-numbers.png b/data/icons/hi64-actions-numbers.png
  1039. deleted file mode 100644
  1040. index 7fbe94b22e4c53aeb00f41e82d9ed25b956d118a..0000000000000000000000000000000000000000
  1041. Binary files a/data/icons/hi64-actions-numbers.png and /dev/null differ
  1042. diff --git a/data/icons/hisc-action-calculate.svgz b/data/icons/hisc-action-calculate.svgz
  1043. new file mode 100644
  1044. index 0000000000000000000000000000000000000000..967e6f9a0784ba10714677dd3e37940f9e164bf5
  1045. Binary files /dev/null and b/data/icons/hisc-action-calculate.svgz differ
  1046. diff --git a/data/icons/hisc-action-chemical.svgz b/data/icons/hisc-action-chemical.svgz
  1047. new file mode 100644
  1048. index 0000000000000000000000000000000000000000..8213a35ffef4397c0452ba24885ea215433c69e5
  1049. Binary files /dev/null and b/data/icons/hisc-action-chemical.svgz differ
  1050. diff --git a/data/icons/hisc-action-elempic.svgz b/data/icons/hisc-action-elempic.svgz
  1051. new file mode 100644
  1052. index 0000000000000000000000000000000000000000..67d6c2f7d30595971c0e2dbe2159d07fe9b8b842
  1053. Binary files /dev/null and b/data/icons/hisc-action-elempic.svgz differ
  1054. diff --git a/data/icons/hisc-action-energies.svgz b/data/icons/hisc-action-energies.svgz
  1055. new file mode 100644
  1056. index 0000000000000000000000000000000000000000..765b4e87b8b7ddef3135cdd3195f007cf5b45f1a
  1057. Binary files /dev/null and b/data/icons/hisc-action-energies.svgz differ
  1058. diff --git a/data/icons/hisc-action-eqchem.svgz b/data/icons/hisc-action-eqchem.svgz
  1059. new file mode 100644
  1060. index 0000000000000000000000000000000000000000..41ab7f747a7015dcb9c5d2ba9c9cab94c87ac10e
  1061. Binary files /dev/null and b/data/icons/hisc-action-eqchem.svgz differ
  1062. diff --git a/data/icons/hisc-action-glossary.svgz b/data/icons/hisc-action-glossary.svgz
  1063. new file mode 100644
  1064. index 0000000000000000000000000000000000000000..156b68613fc001845fc67fe9a4e93b42ca8f4149
  1065. Binary files /dev/null and b/data/icons/hisc-action-glossary.svgz differ
  1066. diff --git a/data/icons/hisc-action-isotopemap.svgz b/data/icons/hisc-action-isotopemap.svgz
  1067. new file mode 100644
  1068. index 0000000000000000000000000000000000000000..1ccf0235b0300afee256bfef599ba369e77d6c68
  1069. Binary files /dev/null and b/data/icons/hisc-action-isotopemap.svgz differ
  1070. diff --git a/data/icons/hisc-action-kalzium_molviewer.svgz b/data/icons/hisc-action-kalzium_molviewer.svgz
  1071. new file mode 100644
  1072. index 0000000000000000000000000000000000000000..23dcabed0f8fe09f2e821f85dd49cc39cf909a44
  1073. Binary files /dev/null and b/data/icons/hisc-action-kalzium_molviewer.svgz differ
  1074. diff --git a/data/icons/hisc-action-kalzium_rs.svgz b/data/icons/hisc-action-kalzium_rs.svgz
  1075. new file mode 100644
  1076. index 0000000000000000000000000000000000000000..a3236cd1be2a1835d407ff288f00a17e89a7fabe
  1077. Binary files /dev/null and b/data/icons/hisc-action-kalzium_rs.svgz differ
  1078. diff --git a/data/icons/hisc-action-kalzium_tables.svgz b/data/icons/hisc-action-kalzium_tables.svgz
  1079. new file mode 100644
  1080. index 0000000000000000000000000000000000000000..eef6ff065552aff27c20821bc38edbdbf0ec2612
  1081. Binary files /dev/null and b/data/icons/hisc-action-kalzium_tables.svgz differ
  1082. diff --git a/data/icons/hisc-action-misc.svgz b/data/icons/hisc-action-misc.svgz
  1083. new file mode 100644
  1084. index 0000000000000000000000000000000000000000..b3dad392e7eaca24c8e0b82cbd940843aeb6ab98
  1085. Binary files /dev/null and b/data/icons/hisc-action-misc.svgz differ
  1086. diff --git a/data/icons/hisc-action-numbers.svgz b/data/icons/hisc-action-numbers.svgz
  1087. new file mode 100644
  1088. index 0000000000000000000000000000000000000000..ceb29b9128ccd456754c7a8524aa9dc06a7f0300
  1089. Binary files /dev/null and b/data/icons/hisc-action-numbers.svgz differ
  1090. diff --git a/data/icons/hisc-action-orbits.svgz b/data/icons/hisc-action-orbits.svgz
  1091. new file mode 100644
  1092. index 0000000000000000000000000000000000000000..df6581d696cb2864ee6b9db347386567ab148b79
  1093. Binary files /dev/null and b/data/icons/hisc-action-orbits.svgz differ
  1094. diff --git a/data/icons/hisc-action-overview.svgz b/data/icons/hisc-action-overview.svgz
  1095. new file mode 100644
  1096. index 0000000000000000000000000000000000000000..5f62d6ba636fccdc3c2c26e67f98b040e4f913ee
  1097. Binary files /dev/null and b/data/icons/hisc-action-overview.svgz differ
  1098. diff --git a/data/icons/hisc-action-plot.svgz b/data/icons/hisc-action-plot.svgz
  1099. new file mode 100644
  1100. index 0000000000000000000000000000000000000000..94cab3d159804a2bf12febd34a2ac51d32a3f759
  1101. Binary files /dev/null and b/data/icons/hisc-action-plot.svgz differ
  1102. diff --git a/data/icons/hisc-action-sidebar.svgz b/data/icons/hisc-action-sidebar.svgz
  1103. new file mode 100644
  1104. index 0000000000000000000000000000000000000000..b0342bdeb44b36ba325c396a8d0e592ef9b3bbdf
  1105. Binary files /dev/null and b/data/icons/hisc-action-sidebar.svgz differ
  1106. diff --git a/data/icons/hisc-action-spectrum.svgz b/data/icons/hisc-action-spectrum.svgz
  1107. new file mode 100644
  1108. index 0000000000000000000000000000000000000000..b285262113078fc70fefac492031705fee5aaab7
  1109. Binary files /dev/null and b/data/icons/hisc-action-spectrum.svgz differ
  1110. diff --git a/data/icons/hisc-action-statematter.svgz b/data/icons/hisc-action-statematter.svgz
  1111. new file mode 100644
  1112. index 0000000000000000000000000000000000000000..f10fc6955d1753d75c2c13f3afcea24a7b791da8
  1113. Binary files /dev/null and b/data/icons/hisc-action-statematter.svgz differ
  1114. diff --git a/data/icons/hisc-action-timeline.svgz b/data/icons/hisc-action-timeline.svgz
  1115. new file mode 100644
  1116. index 0000000000000000000000000000000000000000..66cf86e226c011a22fe13491368d4d16af44f331
  1117. Binary files /dev/null and b/data/icons/hisc-action-timeline.svgz differ
  1118. diff --git a/data/icons/hisc-action-tooltip.svgz b/data/icons/hisc-action-tooltip.svgz
  1119. new file mode 100644
  1120. index 0000000000000000000000000000000000000000..6f4e4d223e776cf1a91f2503006298a98e6a52f9
  1121. Binary files /dev/null and b/data/icons/hisc-action-tooltip.svgz differ
  1122. diff --git a/data/icons/hisc-actions-calculate.svgz b/data/icons/hisc-actions-calculate.svgz
  1123. deleted file mode 100644
  1124. index 967e6f9a0784ba10714677dd3e37940f9e164bf5..0000000000000000000000000000000000000000
  1125. Binary files a/data/icons/hisc-actions-calculate.svgz and /dev/null differ
  1126. diff --git a/data/icons/hisc-actions-chemical.svgz b/data/icons/hisc-actions-chemical.svgz
  1127. deleted file mode 100644
  1128. index 8213a35ffef4397c0452ba24885ea215433c69e5..0000000000000000000000000000000000000000
  1129. Binary files a/data/icons/hisc-actions-chemical.svgz and /dev/null differ
  1130. diff --git a/data/icons/hisc-actions-elempic.svgz b/data/icons/hisc-actions-elempic.svgz
  1131. deleted file mode 100644
  1132. index 67d6c2f7d30595971c0e2dbe2159d07fe9b8b842..0000000000000000000000000000000000000000
  1133. Binary files a/data/icons/hisc-actions-elempic.svgz and /dev/null differ
  1134. diff --git a/data/icons/hisc-actions-energies.svgz b/data/icons/hisc-actions-energies.svgz
  1135. deleted file mode 100644
  1136. index 765b4e87b8b7ddef3135cdd3195f007cf5b45f1a..0000000000000000000000000000000000000000
  1137. Binary files a/data/icons/hisc-actions-energies.svgz and /dev/null differ
  1138. diff --git a/data/icons/hisc-actions-eqchem.svgz b/data/icons/hisc-actions-eqchem.svgz
  1139. deleted file mode 100644
  1140. index 41ab7f747a7015dcb9c5d2ba9c9cab94c87ac10e..0000000000000000000000000000000000000000
  1141. Binary files a/data/icons/hisc-actions-eqchem.svgz and /dev/null differ
  1142. diff --git a/data/icons/hisc-actions-glossary.svgz b/data/icons/hisc-actions-glossary.svgz
  1143. deleted file mode 100644
  1144. index 156b68613fc001845fc67fe9a4e93b42ca8f4149..0000000000000000000000000000000000000000
  1145. Binary files a/data/icons/hisc-actions-glossary.svgz and /dev/null differ
  1146. diff --git a/data/icons/hisc-actions-isotopemap.svgz b/data/icons/hisc-actions-isotopemap.svgz
  1147. deleted file mode 100644
  1148. index 1ccf0235b0300afee256bfef599ba369e77d6c68..0000000000000000000000000000000000000000
  1149. Binary files a/data/icons/hisc-actions-isotopemap.svgz and /dev/null differ
  1150. diff --git a/data/icons/hisc-actions-kalzium_molviewer.svgz b/data/icons/hisc-actions-kalzium_molviewer.svgz
  1151. deleted file mode 100644
  1152. index 23dcabed0f8fe09f2e821f85dd49cc39cf909a44..0000000000000000000000000000000000000000
  1153. Binary files a/data/icons/hisc-actions-kalzium_molviewer.svgz and /dev/null differ
  1154. diff --git a/data/icons/hisc-actions-kalzium_rs.svgz b/data/icons/hisc-actions-kalzium_rs.svgz
  1155. deleted file mode 100644
  1156. index a3236cd1be2a1835d407ff288f00a17e89a7fabe..0000000000000000000000000000000000000000
  1157. Binary files a/data/icons/hisc-actions-kalzium_rs.svgz and /dev/null differ
  1158. diff --git a/data/icons/hisc-actions-kalzium_tables.svgz b/data/icons/hisc-actions-kalzium_tables.svgz
  1159. deleted file mode 100644
  1160. index eef6ff065552aff27c20821bc38edbdbf0ec2612..0000000000000000000000000000000000000000
  1161. Binary files a/data/icons/hisc-actions-kalzium_tables.svgz and /dev/null differ
  1162. diff --git a/data/icons/hisc-actions-misc.svgz b/data/icons/hisc-actions-misc.svgz
  1163. deleted file mode 100644
  1164. index b3dad392e7eaca24c8e0b82cbd940843aeb6ab98..0000000000000000000000000000000000000000
  1165. Binary files a/data/icons/hisc-actions-misc.svgz and /dev/null differ
  1166. diff --git a/data/icons/hisc-actions-numbers.svgz b/data/icons/hisc-actions-numbers.svgz
  1167. deleted file mode 100644
  1168. index ceb29b9128ccd456754c7a8524aa9dc06a7f0300..0000000000000000000000000000000000000000
  1169. Binary files a/data/icons/hisc-actions-numbers.svgz and /dev/null differ
  1170. diff --git a/data/icons/hisc-actions-orbits.svgz b/data/icons/hisc-actions-orbits.svgz
  1171. deleted file mode 100644
  1172. index df6581d696cb2864ee6b9db347386567ab148b79..0000000000000000000000000000000000000000
  1173. Binary files a/data/icons/hisc-actions-orbits.svgz and /dev/null differ
  1174. diff --git a/data/icons/hisc-actions-overview.svgz b/data/icons/hisc-actions-overview.svgz
  1175. deleted file mode 100644
  1176. index 5f62d6ba636fccdc3c2c26e67f98b040e4f913ee..0000000000000000000000000000000000000000
  1177. Binary files a/data/icons/hisc-actions-overview.svgz and /dev/null differ
  1178. diff --git a/data/icons/hisc-actions-plot.svgz b/data/icons/hisc-actions-plot.svgz
  1179. deleted file mode 100644
  1180. index 94cab3d159804a2bf12febd34a2ac51d32a3f759..0000000000000000000000000000000000000000
  1181. Binary files a/data/icons/hisc-actions-plot.svgz and /dev/null differ
  1182. diff --git a/data/icons/hisc-actions-sidebar.svgz b/data/icons/hisc-actions-sidebar.svgz
  1183. deleted file mode 100644
  1184. index b0342bdeb44b36ba325c396a8d0e592ef9b3bbdf..0000000000000000000000000000000000000000
  1185. Binary files a/data/icons/hisc-actions-sidebar.svgz and /dev/null differ
  1186. diff --git a/data/icons/hisc-actions-spectrum.svgz b/data/icons/hisc-actions-spectrum.svgz
  1187. deleted file mode 100644
  1188. index b285262113078fc70fefac492031705fee5aaab7..0000000000000000000000000000000000000000
  1189. Binary files a/data/icons/hisc-actions-spectrum.svgz and /dev/null differ
  1190. diff --git a/data/icons/hisc-actions-statematter.svgz b/data/icons/hisc-actions-statematter.svgz
  1191. deleted file mode 100644
  1192. index f10fc6955d1753d75c2c13f3afcea24a7b791da8..0000000000000000000000000000000000000000
  1193. Binary files a/data/icons/hisc-actions-statematter.svgz and /dev/null differ
  1194. diff --git a/data/icons/hisc-actions-timeline.svgz b/data/icons/hisc-actions-timeline.svgz
  1195. deleted file mode 100644
  1196. index 66cf86e226c011a22fe13491368d4d16af44f331..0000000000000000000000000000000000000000
  1197. Binary files a/data/icons/hisc-actions-timeline.svgz and /dev/null differ
  1198. diff --git a/data/icons/hisc-actions-tooltip.svgz b/data/icons/hisc-actions-tooltip.svgz
  1199. deleted file mode 100644
  1200. index 6f4e4d223e776cf1a91f2503006298a98e6a52f9..0000000000000000000000000000000000000000
  1201. Binary files a/data/icons/hisc-actions-tooltip.svgz and /dev/null differ
  1202. diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
  1203. index 79acf1403535758712bfb86ad7210c40798923eb..f04a92b38c25a103fca6975469286b72746cb3fd 100644
  1204. --- a/doc/CMakeLists.txt
  1205. +++ b/doc/CMakeLists.txt
  1206. @@ -1,4 +1,5 @@
  1207.  ########### install files ###############
  1208. +#
  1209.  
  1210. -kdoctools_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en SUBDIR kalzium)
  1211. -kdoctools_create_manpage(man-kalzium.1.docbook 1 INSTALL_DESTINATION ${MAN_INSTALL_DIR})
  1212. +kde4_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en SUBDIR kalzium)
  1213. +kde4_create_manpage(man-kalzium.1.docbook 1 INSTALL_DESTINATION ${MAN_INSTALL_DIR})
  1214. diff --git a/doc/CMakeLists.txt~ b/doc/CMakeLists.txt~
  1215. deleted file mode 100644
  1216. index f04a92b38c25a103fca6975469286b72746cb3fd..0000000000000000000000000000000000000000
  1217. --- a/doc/CMakeLists.txt~
  1218. +++ /dev/null
  1219. @@ -1,5 +0,0 @@
  1220. -########### install files ###############
  1221. -#
  1222. -
  1223. -kde4_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en SUBDIR kalzium)
  1224. -kde4_create_manpage(man-kalzium.1.docbook 1 INSTALL_DESTINATION ${MAN_INSTALL_DIR})
  1225. diff --git a/libscience/CMakeLists.txt b/libscience/CMakeLists.txt
  1226. index cf7ac6f9cd689100ddf0fdd68de12b81192346de..ac661329d6d2f9367fccf749d8e22ae7be9cc921 100644
  1227. --- a/libscience/CMakeLists.txt
  1228. +++ b/libscience/CMakeLists.txt
  1229. @@ -15,9 +15,10 @@ set(science_LIB_SRCS
  1230.  )
  1231.  
  1232.  
  1233. -add_library(science SHARED ${science_LIB_SRCS})
  1234. +kde4_add_library(science SHARED ${science_LIB_SRCS})
  1235. +
  1236. +target_link_libraries(science  ${KDE4_KDECORE_LIBS} ${QT_QTXML_LIBRARY} ${KDE4_KUNITCONVERSION_LIBRARY})
  1237.  
  1238. -target_link_libraries(science   Qt5::Xml KF5::UnitConversion KF5::WidgetsAddons)
  1239.  set_target_properties(science PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
  1240.  install(TARGETS science  ${INSTALL_TARGETS_DEFAULT_ARGS})
  1241.  
  1242. diff --git a/libscience/CMakeLists.txt~ b/libscience/CMakeLists.txt~
  1243. deleted file mode 100644
  1244. index 042f9e93d92a478e2a99f7b0b9a77854d489489a..0000000000000000000000000000000000000000
  1245. --- a/libscience/CMakeLists.txt~
  1246. +++ /dev/null
  1247. @@ -1,38 +0,0 @@
  1248. -add_subdirectory(data)
  1249. -add_subdirectory(tests)
  1250. -
  1251. -set(science_LIB_SRCS
  1252. -   element.cpp
  1253. -   spectrum.cpp
  1254. -   isotope.cpp
  1255. -   spectrumparser.cpp
  1256. -   elementparser.cpp
  1257. -   isotopeparser.cpp
  1258. -   chemicaldataobject.cpp
  1259. -   moleculeparser.cpp
  1260. -   parser.cpp
  1261. -   psetables.cpp
  1262. -)
  1263. -
  1264. -
  1265. -add_library(science SHARED ${science_LIB_SRCS})
  1266. -
  1267. -target_link_libraries(science   ${QT_QTXML_LIBRARY} ${KDE4_KUNITCONVERSION_LIBRARY})
  1268. -#${KDE4_KDECORE_LIBS}
  1269. -set_target_properties(science PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
  1270. -install(TARGETS science  ${INSTALL_TARGETS_DEFAULT_ARGS})
  1271. -
  1272. -install(FILES
  1273. -   chemicaldataobject.h
  1274. -   element.h
  1275. -   elementparser.h
  1276. -   isotope.h
  1277. -   isotopeparser.h
  1278. -   libkdeedu_science_export.h
  1279. -   moleculeparser.h
  1280. -   parser.h
  1281. -   spectrum.h
  1282. -   spectrumparser.h
  1283. -   psetables.h
  1284. -   DESTINATION ${INCLUDE_INSTALL_DIR}/libkdeedu  COMPONENT Devel
  1285. -)
  1286. diff --git a/libscience/tests/CMakeLists.txt b/libscience/tests/CMakeLists.txt
  1287. index ed39af2d292890aa2413701efec3a09a96104188..21c4f85a3be387c03cee47e469916b22a77c7eb5 100644
  1288. --- a/libscience/tests/CMakeLists.txt
  1289. +++ b/libscience/tests/CMakeLists.txt
  1290. @@ -5,24 +5,24 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
  1291.  
  1292.  set(elementparsertest_SRCS xmlreadingtest.cpp)
  1293.  
  1294. -add_executable(elementparsertest ecm_mark_nongui_executable( ${elementparsertest_SRCS}))
  1295. +kde4_add_executable(elementparsertest NOGUI ${elementparsertest_SRCS})
  1296.  
  1297. -target_link_libraries(elementparsertest science Qt5::Core Qt5::Xml)
  1298. +target_link_libraries(elementparsertest science ${QT_QTCORE_LIBRARY} ${QT_QTXML_LIBRARY})
  1299.  
  1300.  ########### next target ###############
  1301.  
  1302.  set(isotopeparsertest_SRCS isotopereadingtest.cpp)
  1303.  
  1304. -add_executable(isotopeparsertest ecm_mark_nongui_executable( ${isotopeparsertest_SRCS}))
  1305. +kde4_add_executable(isotopeparsertest NOGUI ${isotopeparsertest_SRCS})
  1306.  
  1307. -target_link_libraries(isotopeparsertest science Qt5::Core Qt5::Xml)
  1308. +target_link_libraries(isotopeparsertest science ${QT_QTCORE_LIBRARY} ${QT_QTXML_LIBRARY})
  1309.  
  1310.  ########### next target ###############
  1311.  
  1312.  set(spectrumtest_SRCS spectrumreadingtests.cpp)
  1313.  
  1314. -add_executable(spectrumtest ecm_mark_nongui_executable( ${spectrumtest_SRCS}))
  1315. +kde4_add_executable(spectrumtest NOGUI ${spectrumtest_SRCS})
  1316.  
  1317. -target_link_libraries(spectrumtest science Qt5::Core Qt5::Xml)
  1318. +target_link_libraries(spectrumtest science ${QT_QTCORE_LIBRARY} ${QT_QTXML_LIBRARY})
  1319.  
  1320.  
  1321. diff --git a/libscience/tests/CMakeLists.txt~ b/libscience/tests/CMakeLists.txt~
  1322. deleted file mode 100644
  1323. index cbf4a77cfd43e3f1431a9a44b28c22486ba7b9d5..0000000000000000000000000000000000000000
  1324. --- a/libscience/tests/CMakeLists.txt~
  1325. +++ /dev/null
  1326. @@ -1,28 +0,0 @@
  1327. -set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
  1328. -include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
  1329. -
  1330. -########### next target ###############
  1331. -
  1332. -set(elementparsertest_SRCS xmlreadingtest.cpp)
  1333. -
  1334. -add_executable(elementparsertest ecm_mark_nongui_executable( ${elementparsertest_SRCS}))
  1335. -
  1336. -target_link_libraries(elementparsertest science ${Qt5::Core} ${Qt5::Xml})
  1337. -
  1338. -########### next target ###############
  1339. -
  1340. -set(isotopeparsertest_SRCS isotopereadingtest.cpp)
  1341. -
  1342. -add_executable(isotopeparsertest ecm_mark_nongui_executable( ${isotopeparsertest_SRCS}))
  1343. -
  1344. -target_link_libraries(isotopeparsertest science ${Qt5::Core} ${Qt5::Xml})
  1345. -
  1346. -########### next target ###############
  1347. -
  1348. -set(spectrumtest_SRCS spectrumreadingtests.cpp)
  1349. -
  1350. -add_executable(spectrumtest ecm_mark_nongui_executable( ${spectrumtest_SRCS}))
  1351. -
  1352. -target_link_libraries(spectrumtest science ${Qt5::Core} ${Qt5::Xml})
  1353. -
  1354. -
  1355. diff --git a/makefile2/CMakeCache.txt b/makefile2/CMakeCache.txt
  1356. deleted file mode 100644
  1357. index f9db5530c81b726ab708c0aa65efdbb9694c3172..0000000000000000000000000000000000000000
  1358. --- a/makefile2/CMakeCache.txt
  1359. +++ /dev/null
  1360. @@ -1,1794 +0,0 @@
  1361. -# This is the CMakeCache file.
  1362. -# For build in directory: /home/anu/kalzium/makefile2
  1363. -# It was generated by CMake: /usr/bin/cmake
  1364. -# You can edit this file to change values found and used by cmake.
  1365. -# If you do not want to change any of the values, simply exit the editor.
  1366. -# If you do want to change a value, simply edit, save, and exit the editor.
  1367. -# The syntax for the file is as follows:
  1368. -# KEY:TYPE=VALUE
  1369. -# KEY is the name of a variable in the cache.
  1370. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
  1371. -# VALUE is the current value for the KEY.
  1372. -
  1373. -########################
  1374. -# EXTERNAL cache entries
  1375. -########################
  1376. -
  1377. -//The directory containing a CMake configuration file for Avogadro.
  1378. -Avogadro_DIR:PATH=/usr/lib/avogadro
  1379. -
  1380. -//Build the project with gcov support
  1381. -BUILD_COVERAGE:BOOL=OFF
  1382. -
  1383. -//If enabled, shared libs will be built by default, otherwise static
  1384. -// libs
  1385. -BUILD_SHARED_LIBS:BOOL=TRUE
  1386. -
  1387. -//Build the testing tree.
  1388. -BUILD_TESTING:BOOL=ON
  1389. -
  1390. -//Path to a program.
  1391. -CMAKE_AR:FILEPATH=/usr/bin/ar
  1392. -
  1393. -//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
  1394. -// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.
  1395. -CMAKE_BUILD_TYPE:STRING=
  1396. -
  1397. -//Enable/Disable color output during build.
  1398. -CMAKE_COLOR_MAKEFILE:BOOL=ON
  1399. -
  1400. -//CXX compiler.
  1401. -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
  1402. -
  1403. -//Flags used by the compiler during all build types.
  1404. -CMAKE_CXX_FLAGS:STRING=
  1405. -
  1406. -//Flags used by the compiler during debug builds.
  1407. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g
  1408. -
  1409. -//Flags used by the compiler during release builds for minimum
  1410. -// size.
  1411. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
  1412. -
  1413. -//Flags used by the compiler during release builds.
  1414. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
  1415. -
  1416. -//Flags used by the compiler during release builds with debug info.
  1417. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
  1418. -
  1419. -//C compiler.
  1420. -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
  1421. -
  1422. -//Flags used by the compiler during all build types.
  1423. -CMAKE_C_FLAGS:STRING=
  1424. -
  1425. -//Flags used by the compiler during debug builds.
  1426. -CMAKE_C_FLAGS_DEBUG:STRING=-g
  1427. -
  1428. -//Flags used by the compiler during release builds for minimum
  1429. -// size.
  1430. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
  1431. -
  1432. -//Flags used by the compiler during release builds.
  1433. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
  1434. -
  1435. -//Flags used by the compiler during release builds with debug info.
  1436. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
  1437. -
  1438. -//Flags used by the linker.
  1439. -CMAKE_EXE_LINKER_FLAGS:STRING=' '
  1440. -
  1441. -//Flags used by the linker during debug builds.
  1442. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
  1443. -
  1444. -//Flags used by the linker during release minsize builds.
  1445. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
  1446. -
  1447. -//Flags used by the linker during release builds.
  1448. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
  1449. -
  1450. -//Flags used by the linker during Release with Debug Info builds.
  1451. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  1452. -
  1453. -//Enable/Disable output of compile commands during generation.
  1454. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
  1455. -
  1456. -//application desktop files (DATAROOTDIR/applications)
  1457. -CMAKE_INSTALL_APPDIR:PATH=
  1458. -
  1459. -//autostart files (CONFDIR/autostart)
  1460. -CMAKE_INSTALL_AUTOSTARTDIR:PATH=
  1461. -
  1462. -//user executables (EXECROOTDIR/bin)
  1463. -CMAKE_INSTALL_BINDIR:PATH=
  1464. -
  1465. -//CMake packages, including config files (LIBDIR/cmake)
  1466. -CMAKE_INSTALL_CMAKEPACKAGEDIR:PATH=
  1467. -
  1468. -//application configuration files (SYSCONFDIR/xdg)
  1469. -CMAKE_INSTALL_CONFDIR:PATH=
  1470. -
  1471. -//read-only architecture-independent data (DATAROOTDIR)
  1472. -CMAKE_INSTALL_DATADIR:PATH=
  1473. -
  1474. -//read-only architecture-independent data root (share)
  1475. -CMAKE_INSTALL_DATAROOTDIR:PATH=
  1476. -
  1477. -//D-Bus (DATAROOTDIR/dbus-1)
  1478. -CMAKE_INSTALL_DBUSDIR:PATH=
  1479. -
  1480. -//D-Bus interfaces (DBUSDIR/interfaces)
  1481. -CMAKE_INSTALL_DBUSINTERFACEDIR:PATH=
  1482. -
  1483. -//D-Bus session services (DBUSDIR/services)
  1484. -CMAKE_INSTALL_DBUSSERVICEDIR:PATH=
  1485. -
  1486. -//D-Bus system services (DBUSDIR/system-services)
  1487. -CMAKE_INSTALL_DBUSSYSTEMSERVICEDIR:PATH=
  1488. -
  1489. -//desktop directories (DATAROOTDIR/desktop-directories)
  1490. -CMAKE_INSTALL_DESKTOPDIR:PATH=
  1491. -
  1492. -//documentation bundles generated using kdoctools (DATAROOTDIR/doc/HTML)
  1493. -CMAKE_INSTALL_DOCBUNDLEDIR:PATH=
  1494. -
  1495. -//executables and libraries ()
  1496. -CMAKE_INSTALL_EXECROOTDIR:PATH=
  1497. -
  1498. -//icons (DATAROOTDIR/icons)
  1499. -CMAKE_INSTALL_ICONDIR:PATH=
  1500. -
  1501. -//C and C++ header files (include)
  1502. -CMAKE_INSTALL_INCLUDEDIR:PATH=
  1503. -
  1504. -//info documentation (DATAROOTDIR/info)
  1505. -CMAKE_INSTALL_INFODIR:PATH=
  1506. -
  1507. -//kconfig description files (DATAROOTDIR/config.kcfg)
  1508. -CMAKE_INSTALL_KCFGDIR:PATH=
  1509. -
  1510. -//kconf_update scripts (DATAROOTDIR/kconf_update)
  1511. -CMAKE_INSTALL_KCONFUPDATEDIR:PATH=
  1512. -
  1513. -//knotify description files (DATAROOTDIR/knotifications5)
  1514. -CMAKE_INSTALL_KNOTIFY5RCDIR:PATH=
  1515. -
  1516. -//services for KDE Frameworks 5 (DATAROOTDIR/kservices5)
  1517. -CMAKE_INSTALL_KSERVICES5DIR:PATH=
  1518. -
  1519. -//service types for KDE Frameworks 5 (DATAROOTDIR/kservicetypes5)
  1520. -CMAKE_INSTALL_KSERVICETYPES5DIR:PATH=
  1521. -
  1522. -//kxmlgui .rc files (DATAROOTDIR/kxmlgui5)
  1523. -CMAKE_INSTALL_KXMLGUI5DIR:PATH=
  1524. -
  1525. -//object code libraries (EXECROOTDIR/lib/i386-linux-gnu)
  1526. -CMAKE_INSTALL_LIBDIR:PATH=
  1527. -
  1528. -//executables for internal use by programs and libraries (LIBDIR/libexec)
  1529. -CMAKE_INSTALL_LIBEXECDIR:PATH=
  1530. -
  1531. -//knotify description files (DATAROOTDIR/locale)
  1532. -CMAKE_INSTALL_LOCALEDIR:PATH=
  1533. -
  1534. -//modifiable single-machine data (var)
  1535. -CMAKE_INSTALL_LOCALSTATEDIR:PATH=
  1536. -
  1537. -//man documentation (DATAROOTDIR/man)
  1538. -CMAKE_INSTALL_MANDIR:PATH=
  1539. -
  1540. -//AppStream component metadata (DATAROOTDIR/appdata)
  1541. -CMAKE_INSTALL_METAINFODIR:PATH=
  1542. -
  1543. -//mime description files (DATAROOTDIR/mime/packages)
  1544. -CMAKE_INSTALL_MIMEDIR:PATH=
  1545. -
  1546. -//Plugins (QTPLUGINDIR)
  1547. -CMAKE_INSTALL_PLUGINDIR:PATH=
  1548. -
  1549. -//Install path prefix, prepended onto install directories.
  1550. -CMAKE_INSTALL_PREFIX:PATH=/usr/local
  1551. -
  1552. -//QtQuick2 imports (LIBDIR/qml)
  1553. -CMAKE_INSTALL_QMLDIR:PATH=
  1554. -
  1555. -//Qt plugins (LIBDIR/plugins)
  1556. -CMAKE_INSTALL_QTPLUGINDIR:PATH=
  1557. -
  1558. -//QtQuick1 imports (QTPLUGINDIR/imports)
  1559. -CMAKE_INSTALL_QTQUICKIMPORTSDIR:PATH=
  1560. -
  1561. -//system admin executables (EXECROOTDIR/sbin)
  1562. -CMAKE_INSTALL_SBINDIR:PATH=
  1563. -
  1564. -//modifiable architecture-independent data (com)
  1565. -CMAKE_INSTALL_SHAREDSTATEDIR:PATH=
  1566. -
  1567. -//sound files (DATAROOTDIR/sounds)
  1568. -CMAKE_INSTALL_SOUNDDIR:PATH=
  1569. -
  1570. -//read-only single-machine data (etc)
  1571. -CMAKE_INSTALL_SYSCONFDIR:PATH=
  1572. -
  1573. -//templates (DATAROOTDIR/templates)
  1574. -CMAKE_INSTALL_TEMPLATEDIR:PATH=
  1575. -
  1576. -//desktop wallpaper images (DATAROOTDIR/wallpapers)
  1577. -CMAKE_INSTALL_WALLPAPERDIR:PATH=
  1578. -
  1579. -//Path to a program.
  1580. -CMAKE_LINKER:FILEPATH=/usr/bin/ld
  1581. -
  1582. -//Path to a program.
  1583. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
  1584. -
  1585. -//Flags used by the linker during the creation of modules.
  1586. -CMAKE_MODULE_LINKER_FLAGS:STRING=' '
  1587. -
  1588. -//Flags used by the linker during debug builds.
  1589. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
  1590. -
  1591. -//Flags used by the linker during release minsize builds.
  1592. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
  1593. -
  1594. -//Flags used by the linker during release builds.
  1595. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
  1596. -
  1597. -//Flags used by the linker during Release with Debug Info builds.
  1598. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  1599. -
  1600. -//Path to a program.
  1601. -CMAKE_NM:FILEPATH=/usr/bin/nm
  1602. -
  1603. -//Path to a program.
  1604. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
  1605. -
  1606. -//Path to a program.
  1607. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
  1608. -
  1609. -//Value Computed by CMake
  1610. -CMAKE_PROJECT_NAME:STATIC=kalzium
  1611. -
  1612. -//Path to a program.
  1613. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
  1614. -
  1615. -//Flags used by the linker during the creation of dll's.
  1616. -CMAKE_SHARED_LINKER_FLAGS:STRING=' '
  1617. -
  1618. -//Flags used by the linker during debug builds.
  1619. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
  1620. -
  1621. -//Flags used by the linker during release minsize builds.
  1622. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
  1623. -
  1624. -//Flags used by the linker during release builds.
  1625. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
  1626. -
  1627. -//Flags used by the linker during Release with Debug Info builds.
  1628. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  1629. -
  1630. -//If set, runtime paths are not added when installing shared libraries,
  1631. -// but are added when building.
  1632. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
  1633. -
  1634. -//If set, runtime paths are not added when using shared libraries.
  1635. -CMAKE_SKIP_RPATH:BOOL=NO
  1636. -
  1637. -//Flags used by the linker during the creation of static libraries.
  1638. -CMAKE_STATIC_LINKER_FLAGS:STRING=
  1639. -
  1640. -//Flags used by the linker during debug builds.
  1641. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
  1642. -
  1643. -//Flags used by the linker during release minsize builds.
  1644. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
  1645. -
  1646. -//Flags used by the linker during release builds.
  1647. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
  1648. -
  1649. -//Flags used by the linker during Release with Debug Info builds.
  1650. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  1651. -
  1652. -//Path to a program.
  1653. -CMAKE_STRIP:FILEPATH=/usr/bin/strip
  1654. -
  1655. -//If true, cmake will use relative paths in makefiles and projects.
  1656. -CMAKE_USE_RELATIVE_PATHS:BOOL=OFF
  1657. -
  1658. -//If this value is on, makefiles will be generated without the
  1659. -// .SILENT directive, and all commands will be echoed to the console
  1660. -// during the make.  This is useful for debugging only. With Visual
  1661. -// Studio IDE projects all commands are done without /nologo.
  1662. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
  1663. -
  1664. -//The directory containing a CMake configuration file for ECM.
  1665. -ECM_DIR:PATH=/usr/share/ECM/cmake
  1666. -
  1667. -//Path to a file.
  1668. -EIGEN2_INCLUDE_DIR:PATH=/usr/include/eigen2
  1669. -
  1670. -//Path to a file.
  1671. -EIGEN3_INCLUDE_DIR:PATH=/usr/include/eigen3
  1672. -
  1673. -//The directory containing a CMake configuration file for Eigen2.
  1674. -Eigen2_DIR:PATH=Eigen2_DIR-NOTFOUND
  1675. -
  1676. -//Path to a file.
  1677. -GLEW_INCLUDE_DIR:PATH=/usr/include
  1678. -
  1679. -//Path to a library.
  1680. -GLEW_LIBRARY:FILEPATH=/usr/lib/i386-linux-gnu/libGLEW.so
  1681. -
  1682. -//Path to a file.
  1683. -KDE4_DATA_DIR:PATH=KDE4_DATA_DIR-NOTFOUND
  1684. -
  1685. -//Path to a program.
  1686. -KDE4_KDECONFIG_EXECUTABLE:FILEPATH=/usr/bin/kde4-config
  1687. -
  1688. -//Install mkspecs files, Plugins and Imports to the Qt 5 install
  1689. -// dir
  1690. -KDE_INSTALL_USE_QT_SYS_PATHS:BOOL=OFF
  1691. -
  1692. -//Tool to serialize resource-intensive commands in parallel builds
  1693. -KDOCTOOLS_SERIALIZE_TOOL:STRING=
  1694. -
  1695. -//The directory containing a CMake configuration file for KF5Archive.
  1696. -KF5Archive_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/KF5Archive
  1697. -
  1698. -//The directory containing a CMake configuration file for KF5Avogadro.
  1699. -KF5Avogadro_DIR:PATH=KF5Avogadro_DIR-NOTFOUND
  1700. -
  1701. -//The directory containing a CMake configuration file for KF5Config.
  1702. -KF5Config_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/KF5Config
  1703. -
  1704. -//The directory containing a CMake configuration file for KF5CoreAddons.
  1705. -KF5CoreAddons_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/KF5CoreAddons
  1706. -
  1707. -//The directory containing a CMake configuration file for KF5DocTools.
  1708. -KF5DocTools_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/KF5DocTools
  1709. -
  1710. -//The directory containing a CMake configuration file for KF5Solid.
  1711. -KF5Solid_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/KF5Solid
  1712. -
  1713. -//The directory containing a CMake configuration file for KF5.
  1714. -KF5_DIR:PATH=KF5_DIR-NOTFOUND
  1715. -
  1716. -//The directory containing a CMake configuration file for KF5doctools.
  1717. -KF5doctools_DIR:PATH=KF5doctools_DIR-NOTFOUND
  1718. -
  1719. -//The directory containing a CMake configuration file for KF5kdoctools.
  1720. -KF5kdoctools_DIR:PATH=KF5kdoctools_DIR-NOTFOUND
  1721. -
  1722. -//Path to a file.
  1723. -LIBFACILE_INCLUDE_DIR:PATH=/usr/lib/ocaml/facile
  1724. -
  1725. -//Path to a library.
  1726. -LIBFACILE_LIBRARIES:FILEPATH=/usr/lib/ocaml/facile/facile.a
  1727. -
  1728. -//Path to a library.
  1729. -OCAML_ASMRUN_LIBRARY:FILEPATH=OCAML_ASMRUN_LIBRARY-NOTFOUND
  1730. -
  1731. -//Path to a library.
  1732. -OCAML_NUMS_LIBRARY:FILEPATH=OCAML_NUMS_LIBRARY-NOTFOUND
  1733. -
  1734. -//Path to a program.
  1735. -OCAML_OCAMLC_EXECUTABLE:FILEPATH=/usr/bin/ocamlc
  1736. -
  1737. -//Path to a program.
  1738. -OCAML_OCAMLDEP_EXECUTABLE:FILEPATH=/usr/bin/ocamldep
  1739. -
  1740. -//Path to a program.
  1741. -OCAML_OCAMLOPT_EXECUTABLE:FILEPATH=/usr/bin/ocamlopt
  1742. -
  1743. -//Path to a library.
  1744. -OCAML_STR_LIBRARY:FILEPATH=OCAML_STR_LIBRARY-NOTFOUND
  1745. -
  1746. -//Path to a program.
  1747. -OPENBABEL2_EXECUTABLE:FILEPATH=OPENBABEL2_EXECUTABLE-NOTFOUND
  1748. -
  1749. -//Path to a file.
  1750. -OPENBABEL2_INCLUDE_DIR:PATH=/usr/include/openbabel-2.0
  1751. -
  1752. -//Path to a library.
  1753. -OPENBABEL2_LIBRARIES:FILEPATH=/usr/lib/libopenbabel.so
  1754. -
  1755. -//pkg-config executable
  1756. -PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
  1757. -
  1758. -//Path to a library.
  1759. -QT_ARTHURPLUGIN_PLUGIN_DEBUG:FILEPATH=QT_ARTHURPLUGIN_PLUGIN_DEBUG-NOTFOUND
  1760. -
  1761. -//Path to a library.
  1762. -QT_ARTHURPLUGIN_PLUGIN_RELEASE:FILEPATH=QT_ARTHURPLUGIN_PLUGIN_RELEASE-NOTFOUND
  1763. -
  1764. -//Path to a library.
  1765. -QT_CONTAINEREXTENSION_PLUGIN_DEBUG:FILEPATH=QT_CONTAINEREXTENSION_PLUGIN_DEBUG-NOTFOUND
  1766. -
  1767. -//Path to a library.
  1768. -QT_CONTAINEREXTENSION_PLUGIN_RELEASE:FILEPATH=QT_CONTAINEREXTENSION_PLUGIN_RELEASE-NOTFOUND
  1769. -
  1770. -//Path to a library.
  1771. -QT_CUSTOMWIDGETPLUGIN_PLUGIN_DEBUG:FILEPATH=QT_CUSTOMWIDGETPLUGIN_PLUGIN_DEBUG-NOTFOUND
  1772. -
  1773. -//Path to a library.
  1774. -QT_CUSTOMWIDGETPLUGIN_PLUGIN_RELEASE:FILEPATH=QT_CUSTOMWIDGETPLUGIN_PLUGIN_RELEASE-NOTFOUND
  1775. -
  1776. -//Path to a program.
  1777. -QT_DBUSCPP2XML_EXECUTABLE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/bin/qdbuscpp2xml
  1778. -
  1779. -//Path to a program.
  1780. -QT_DBUSXML2CPP_EXECUTABLE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/bin/qdbusxml2cpp
  1781. -
  1782. -//Path to a program.
  1783. -QT_DESIGNER_EXECUTABLE:FILEPATH=QT_DESIGNER_EXECUTABLE-NOTFOUND
  1784. -
  1785. -//The location of the Qt docs
  1786. -QT_DOC_DIR:PATH=/usr/share/qt4/doc
  1787. -
  1788. -//The location of the Qt imports
  1789. -QT_IMPORTS_DIR:PATH=QT_IMPORTS_DIR-NOTFOUND
  1790. -
  1791. -//Path to a program.
  1792. -QT_LINGUIST_EXECUTABLE:FILEPATH=QT_LINGUIST_EXECUTABLE-NOTFOUND
  1793. -
  1794. -//Path to a program.
  1795. -QT_LRELEASE_EXECUTABLE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/bin/lrelease
  1796. -
  1797. -//Path to a program.
  1798. -QT_LUPDATE_EXECUTABLE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/bin/lupdate
  1799. -
  1800. -//The location of the Qt mkspecs containing qconfig.pri
  1801. -QT_MKSPECS_DIR:PATH=/usr/share/qt4/mkspecs
  1802. -
  1803. -//Path to a program.
  1804. -QT_MOC_EXECUTABLE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/bin/moc
  1805. -
  1806. -//Path to a library.
  1807. -QT_PHONONWIDGETS_PLUGIN_DEBUG:FILEPATH=QT_PHONONWIDGETS_PLUGIN_DEBUG-NOTFOUND
  1808. -
  1809. -//Path to a library.
  1810. -QT_PHONONWIDGETS_PLUGIN_RELEASE:FILEPATH=QT_PHONONWIDGETS_PLUGIN_RELEASE-NOTFOUND
  1811. -
  1812. -//Path to a file.
  1813. -QT_PHONON_INCLUDE_DIR:PATH=QT_PHONON_INCLUDE_DIR-NOTFOUND
  1814. -
  1815. -//The Qt PHONON library
  1816. -QT_PHONON_LIBRARY:STRING=
  1817. -
  1818. -//Path to a library.
  1819. -QT_PHONON_LIBRARY_DEBUG:FILEPATH=QT_PHONON_LIBRARY_DEBUG-NOTFOUND
  1820. -
  1821. -//Path to a library.
  1822. -QT_PHONON_LIBRARY_RELEASE:FILEPATH=QT_PHONON_LIBRARY_RELEASE-NOTFOUND
  1823. -
  1824. -//The location of the Qt plugins
  1825. -QT_PLUGINS_DIR:PATH=/usr/lib/i386-linux-gnu/qt4/plugins
  1826. -
  1827. -//Path to a library.
  1828. -QT_QCNCODECS_PLUGIN_DEBUG:FILEPATH=QT_QCNCODECS_PLUGIN_DEBUG-NOTFOUND
  1829. -
  1830. -//Path to a library.
  1831. -QT_QCNCODECS_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/codecs/libqcncodecs.so
  1832. -
  1833. -//Path to a program.
  1834. -QT_QCOLLECTIONGENERATOR_EXECUTABLE:FILEPATH=QT_QCOLLECTIONGENERATOR_EXECUTABLE-NOTFOUND
  1835. -
  1836. -//Path to a library.
  1837. -QT_QCOREWLANBEARER_PLUGIN_DEBUG:FILEPATH=QT_QCOREWLANBEARER_PLUGIN_DEBUG-NOTFOUND
  1838. -
  1839. -//Path to a library.
  1840. -QT_QCOREWLANBEARER_PLUGIN_RELEASE:FILEPATH=QT_QCOREWLANBEARER_PLUGIN_RELEASE-NOTFOUND
  1841. -
  1842. -//Path to a library.
  1843. -QT_QDECLARATIVEVIEW_PLUGIN_DEBUG:FILEPATH=QT_QDECLARATIVEVIEW_PLUGIN_DEBUG-NOTFOUND
  1844. -
  1845. -//Path to a library.
  1846. -QT_QDECLARATIVEVIEW_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/designer/libqdeclarativeview.so
  1847. -
  1848. -//Path to a library.
  1849. -QT_QDECORATIONDEFAULT_PLUGIN_DEBUG:FILEPATH=QT_QDECORATIONDEFAULT_PLUGIN_DEBUG-NOTFOUND
  1850. -
  1851. -//Path to a library.
  1852. -QT_QDECORATIONDEFAULT_PLUGIN_RELEASE:FILEPATH=QT_QDECORATIONDEFAULT_PLUGIN_RELEASE-NOTFOUND
  1853. -
  1854. -//Path to a library.
  1855. -QT_QDECORATIONWINDOWS_PLUGIN_DEBUG:FILEPATH=QT_QDECORATIONWINDOWS_PLUGIN_DEBUG-NOTFOUND
  1856. -
  1857. -//Path to a library.
  1858. -QT_QDECORATIONWINDOWS_PLUGIN_RELEASE:FILEPATH=QT_QDECORATIONWINDOWS_PLUGIN_RELEASE-NOTFOUND
  1859. -
  1860. -//Path to a library.
  1861. -QT_QGENERICBEARER_PLUGIN_DEBUG:FILEPATH=QT_QGENERICBEARER_PLUGIN_DEBUG-NOTFOUND
  1862. -
  1863. -//Path to a library.
  1864. -QT_QGENERICBEARER_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/bearer/libqgenericbearer.so
  1865. -
  1866. -//Path to a library.
  1867. -QT_QGIF_PLUGIN_DEBUG:FILEPATH=QT_QGIF_PLUGIN_DEBUG-NOTFOUND
  1868. -
  1869. -//Path to a library.
  1870. -QT_QGIF_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/imageformats/libqgif.so
  1871. -
  1872. -//Path to a library.
  1873. -QT_QGLGRAPHICSSYSTEM_PLUGIN_DEBUG:FILEPATH=QT_QGLGRAPHICSSYSTEM_PLUGIN_DEBUG-NOTFOUND
  1874. -
  1875. -//Path to a library.
  1876. -QT_QGLGRAPHICSSYSTEM_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/graphicssystems/libqglgraphicssystem.so
  1877. -
  1878. -//Path to a library.
  1879. -QT_QICO_PLUGIN_DEBUG:FILEPATH=QT_QICO_PLUGIN_DEBUG-NOTFOUND
  1880. -
  1881. -//Path to a library.
  1882. -QT_QICO_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/imageformats/libqico.so
  1883. -
  1884. -//Path to a library.
  1885. -QT_QIMSW_MULTI_PLUGIN_DEBUG:FILEPATH=QT_QIMSW_MULTI_PLUGIN_DEBUG-NOTFOUND
  1886. -
  1887. -//Path to a library.
  1888. -QT_QIMSW_MULTI_PLUGIN_RELEASE:FILEPATH=QT_QIMSW_MULTI_PLUGIN_RELEASE-NOTFOUND
  1889. -
  1890. -//Path to a library.
  1891. -QT_QJPCODECS_PLUGIN_DEBUG:FILEPATH=QT_QJPCODECS_PLUGIN_DEBUG-NOTFOUND
  1892. -
  1893. -//Path to a library.
  1894. -QT_QJPCODECS_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/codecs/libqjpcodecs.so
  1895. -
  1896. -//Path to a library.
  1897. -QT_QJPEG_PLUGIN_DEBUG:FILEPATH=QT_QJPEG_PLUGIN_DEBUG-NOTFOUND
  1898. -
  1899. -//Path to a library.
  1900. -QT_QJPEG_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/imageformats/libqjpeg.so
  1901. -
  1902. -//Path to a library.
  1903. -QT_QKRCODECS_PLUGIN_DEBUG:FILEPATH=QT_QKRCODECS_PLUGIN_DEBUG-NOTFOUND
  1904. -
  1905. -//Path to a library.
  1906. -QT_QKRCODECS_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/codecs/libqkrcodecs.so
  1907. -
  1908. -//Where can the qmake library be found
  1909. -QT_QMAKE_EXECUTABLE:FILEPATH=/usr/bin/qmake
  1910. -
  1911. -//Path to a library.
  1912. -QT_QMNG_PLUGIN_DEBUG:FILEPATH=QT_QMNG_PLUGIN_DEBUG-NOTFOUND
  1913. -
  1914. -//Path to a library.
  1915. -QT_QMNG_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/imageformats/libqmng.so
  1916. -
  1917. -//Path to a library.
  1918. -QT_QSQLDB2_PLUGIN_DEBUG:FILEPATH=QT_QSQLDB2_PLUGIN_DEBUG-NOTFOUND
  1919. -
  1920. -//Path to a library.
  1921. -QT_QSQLDB2_PLUGIN_RELEASE:FILEPATH=QT_QSQLDB2_PLUGIN_RELEASE-NOTFOUND
  1922. -
  1923. -//Path to a library.
  1924. -QT_QSQLIBASE_PLUGIN_DEBUG:FILEPATH=QT_QSQLIBASE_PLUGIN_DEBUG-NOTFOUND
  1925. -
  1926. -//Path to a library.
  1927. -QT_QSQLIBASE_PLUGIN_RELEASE:FILEPATH=QT_QSQLIBASE_PLUGIN_RELEASE-NOTFOUND
  1928. -
  1929. -//Path to a library.
  1930. -QT_QSQLITE2_PLUGIN_DEBUG:FILEPATH=QT_QSQLITE2_PLUGIN_DEBUG-NOTFOUND
  1931. -
  1932. -//Path to a library.
  1933. -QT_QSQLITE2_PLUGIN_RELEASE:FILEPATH=QT_QSQLITE2_PLUGIN_RELEASE-NOTFOUND
  1934. -
  1935. -//Path to a library.
  1936. -QT_QSQLITE_PLUGIN_DEBUG:FILEPATH=QT_QSQLITE_PLUGIN_DEBUG-NOTFOUND
  1937. -
  1938. -//Path to a library.
  1939. -QT_QSQLITE_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/sqldrivers/libqsqlite.so
  1940. -
  1941. -//Path to a library.
  1942. -QT_QSQLMYSQL_PLUGIN_DEBUG:FILEPATH=QT_QSQLMYSQL_PLUGIN_DEBUG-NOTFOUND
  1943. -
  1944. -//Path to a library.
  1945. -QT_QSQLMYSQL_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/sqldrivers/libqsqlmysql.so
  1946. -
  1947. -//Path to a library.
  1948. -QT_QSQLOCI_PLUGIN_DEBUG:FILEPATH=QT_QSQLOCI_PLUGIN_DEBUG-NOTFOUND
  1949. -
  1950. -//Path to a library.
  1951. -QT_QSQLOCI_PLUGIN_RELEASE:FILEPATH=QT_QSQLOCI_PLUGIN_RELEASE-NOTFOUND
  1952. -
  1953. -//Path to a library.
  1954. -QT_QSQLODBC_PLUGIN_DEBUG:FILEPATH=QT_QSQLODBC_PLUGIN_DEBUG-NOTFOUND
  1955. -
  1956. -//Path to a library.
  1957. -QT_QSQLODBC_PLUGIN_RELEASE:FILEPATH=QT_QSQLODBC_PLUGIN_RELEASE-NOTFOUND
  1958. -
  1959. -//Path to a library.
  1960. -QT_QSQLPSQL_PLUGIN_DEBUG:FILEPATH=QT_QSQLPSQL_PLUGIN_DEBUG-NOTFOUND
  1961. -
  1962. -//Path to a library.
  1963. -QT_QSQLPSQL_PLUGIN_RELEASE:FILEPATH=QT_QSQLPSQL_PLUGIN_RELEASE-NOTFOUND
  1964. -
  1965. -//Path to a library.
  1966. -QT_QSQLTDS_PLUGIN_DEBUG:FILEPATH=QT_QSQLTDS_PLUGIN_DEBUG-NOTFOUND
  1967. -
  1968. -//Path to a library.
  1969. -QT_QSQLTDS_PLUGIN_RELEASE:FILEPATH=QT_QSQLTDS_PLUGIN_RELEASE-NOTFOUND
  1970. -
  1971. -//Path to a library.
  1972. -QT_QSVGICON_PLUGIN_DEBUG:FILEPATH=QT_QSVGICON_PLUGIN_DEBUG-NOTFOUND
  1973. -
  1974. -//Path to a library.
  1975. -QT_QSVGICON_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/iconengines/libqsvgicon.so
  1976. -
  1977. -//Path to a library.
  1978. -QT_QSVG_PLUGIN_DEBUG:FILEPATH=QT_QSVG_PLUGIN_DEBUG-NOTFOUND
  1979. -
  1980. -//Path to a library.
  1981. -QT_QSVG_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/imageformats/libqsvg.so
  1982. -
  1983. -//Path to a library.
  1984. -QT_QT3SUPPORTWIDGETS_PLUGIN_DEBUG:FILEPATH=QT_QT3SUPPORTWIDGETS_PLUGIN_DEBUG-NOTFOUND
  1985. -
  1986. -//Path to a library.
  1987. -QT_QT3SUPPORTWIDGETS_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/designer/libqt3supportwidgets.so
  1988. -
  1989. -//Path to a file.
  1990. -QT_QT3SUPPORT_INCLUDE_DIR:PATH=/usr/include/qt4/Qt3Support
  1991. -
  1992. -//The Qt QT3SUPPORT library
  1993. -QT_QT3SUPPORT_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQt3Support.so
  1994. -
  1995. -//Path to a library.
  1996. -QT_QT3SUPPORT_LIBRARY_DEBUG:FILEPATH=QT_QT3SUPPORT_LIBRARY_DEBUG-NOTFOUND
  1997. -
  1998. -//Path to a library.
  1999. -QT_QT3SUPPORT_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQt3Support.so
  2000. -
  2001. -//Path to a library.
  2002. -QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_DEBUG:FILEPATH=QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_DEBUG-NOTFOUND
  2003. -
  2004. -//Path to a library.
  2005. -QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/accessible/libqtaccessiblecompatwidgets.so
  2006. -
  2007. -//Path to a library.
  2008. -QT_QTACCESSIBLEWIDGETS_PLUGIN_DEBUG:FILEPATH=QT_QTACCESSIBLEWIDGETS_PLUGIN_DEBUG-NOTFOUND
  2009. -
  2010. -//Path to a library.
  2011. -QT_QTACCESSIBLEWIDGETS_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/accessible/libqtaccessiblewidgets.so
  2012. -
  2013. -//Path to a file.
  2014. -QT_QTASSISTANTCLIENT_INCLUDE_DIR:PATH=QT_QTASSISTANTCLIENT_INCLUDE_DIR-NOTFOUND
  2015. -
  2016. -//The Qt QTASSISTANTCLIENT library
  2017. -QT_QTASSISTANTCLIENT_LIBRARY:STRING=
  2018. -
  2019. -//Path to a library.
  2020. -QT_QTASSISTANTCLIENT_LIBRARY_DEBUG:FILEPATH=QT_QTASSISTANTCLIENT_LIBRARY_DEBUG-NOTFOUND
  2021. -
  2022. -//Path to a library.
  2023. -QT_QTASSISTANTCLIENT_LIBRARY_RELEASE:FILEPATH=QT_QTASSISTANTCLIENT_LIBRARY_RELEASE-NOTFOUND
  2024. -
  2025. -//Path to a file.
  2026. -QT_QTASSISTANT_INCLUDE_DIR:PATH=QT_QTASSISTANT_INCLUDE_DIR-NOTFOUND
  2027. -
  2028. -//The Qt QTASSISTANT library
  2029. -QT_QTASSISTANT_LIBRARY:STRING=
  2030. -
  2031. -//Path to a library.
  2032. -QT_QTASSISTANT_LIBRARY_DEBUG:FILEPATH=QT_QTASSISTANT_LIBRARY_DEBUG-NOTFOUND
  2033. -
  2034. -//Path to a library.
  2035. -QT_QTASSISTANT_LIBRARY_RELEASE:FILEPATH=QT_QTASSISTANT_LIBRARY_RELEASE-NOTFOUND
  2036. -
  2037. -//The Qt QTCLUCENE library
  2038. -QT_QTCLUCENE_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtCLucene.so
  2039. -
  2040. -//Path to a library.
  2041. -QT_QTCLUCENE_LIBRARY_DEBUG:FILEPATH=QT_QTCLUCENE_LIBRARY_DEBUG-NOTFOUND
  2042. -
  2043. -//Path to a library.
  2044. -QT_QTCLUCENE_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtCLucene.so
  2045. -
  2046. -//Path to a file.
  2047. -QT_QTCORE_INCLUDE_DIR:PATH=/usr/include/qt4/QtCore
  2048. -
  2049. -//The Qt QTCORE library
  2050. -QT_QTCORE_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtCore.so
  2051. -
  2052. -//Path to a library.
  2053. -QT_QTCORE_LIBRARY_DEBUG:FILEPATH=QT_QTCORE_LIBRARY_DEBUG-NOTFOUND
  2054. -
  2055. -//Path to a library.
  2056. -QT_QTCORE_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtCore.so
  2057. -
  2058. -//Path to a file.
  2059. -QT_QTDBUS_INCLUDE_DIR:PATH=/usr/include/qt4/QtDBus
  2060. -
  2061. -//The Qt QTDBUS library
  2062. -QT_QTDBUS_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtDBus.so
  2063. -
  2064. -//Path to a library.
  2065. -QT_QTDBUS_LIBRARY_DEBUG:FILEPATH=QT_QTDBUS_LIBRARY_DEBUG-NOTFOUND
  2066. -
  2067. -//Path to a library.
  2068. -QT_QTDBUS_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtDBus.so
  2069. -
  2070. -//Path to a file.
  2071. -QT_QTDECLARATIVE_INCLUDE_DIR:PATH=/usr/include/qt4/QtDeclarative
  2072. -
  2073. -//The Qt QTDECLARATIVE library
  2074. -QT_QTDECLARATIVE_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtDeclarative.so
  2075. -
  2076. -//Path to a library.
  2077. -QT_QTDECLARATIVE_LIBRARY_DEBUG:FILEPATH=QT_QTDECLARATIVE_LIBRARY_DEBUG-NOTFOUND
  2078. -
  2079. -//Path to a library.
  2080. -QT_QTDECLARATIVE_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtDeclarative.so
  2081. -
  2082. -//Path to a file.
  2083. -QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR:PATH=/usr/include/qt4/QtDesigner
  2084. -
  2085. -//The Qt QTDESIGNERCOMPONENTS library
  2086. -QT_QTDESIGNERCOMPONENTS_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtDesignerComponents.so
  2087. -
  2088. -//Path to a library.
  2089. -QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG:FILEPATH=QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG-NOTFOUND
  2090. -
  2091. -//Path to a library.
  2092. -QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtDesignerComponents.so
  2093. -
  2094. -//Path to a file.
  2095. -QT_QTDESIGNER_INCLUDE_DIR:PATH=/usr/include/qt4/QtDesigner
  2096. -
  2097. -//The Qt QTDESIGNER library
  2098. -QT_QTDESIGNER_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtDesigner.so
  2099. -
  2100. -//Path to a library.
  2101. -QT_QTDESIGNER_LIBRARY_DEBUG:FILEPATH=QT_QTDESIGNER_LIBRARY_DEBUG-NOTFOUND
  2102. -
  2103. -//Path to a library.
  2104. -QT_QTDESIGNER_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtDesigner.so
  2105. -
  2106. -//Path to a file.
  2107. -QT_QTGUI_INCLUDE_DIR:PATH=/usr/include/qt4/QtGui
  2108. -
  2109. -//The Qt QTGUI library
  2110. -QT_QTGUI_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtGui.so
  2111. -
  2112. -//Path to a library.
  2113. -QT_QTGUI_LIBRARY_DEBUG:FILEPATH=QT_QTGUI_LIBRARY_DEBUG-NOTFOUND
  2114. -
  2115. -//Path to a library.
  2116. -QT_QTGUI_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtGui.so
  2117. -
  2118. -//Path to a file.
  2119. -QT_QTHELP_INCLUDE_DIR:PATH=/usr/include/qt4/QtHelp
  2120. -
  2121. -//The Qt QTHELP library
  2122. -QT_QTHELP_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtHelp.so
  2123. -
  2124. -//Path to a library.
  2125. -QT_QTHELP_LIBRARY_DEBUG:FILEPATH=QT_QTHELP_LIBRARY_DEBUG-NOTFOUND
  2126. -
  2127. -//Path to a library.
  2128. -QT_QTHELP_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtHelp.so
  2129. -
  2130. -//Path to a library.
  2131. -QT_QTIFF_PLUGIN_DEBUG:FILEPATH=QT_QTIFF_PLUGIN_DEBUG-NOTFOUND
  2132. -
  2133. -//Path to a library.
  2134. -QT_QTIFF_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/imageformats/libqtiff.so
  2135. -
  2136. -//Path to a file.
  2137. -QT_QTMOTIF_INCLUDE_DIR:PATH=QT_QTMOTIF_INCLUDE_DIR-NOTFOUND
  2138. -
  2139. -//The Qt QTMOTIF library
  2140. -QT_QTMOTIF_LIBRARY:STRING=
  2141. -
  2142. -//Path to a library.
  2143. -QT_QTMOTIF_LIBRARY_DEBUG:FILEPATH=QT_QTMOTIF_LIBRARY_DEBUG-NOTFOUND
  2144. -
  2145. -//Path to a library.
  2146. -QT_QTMOTIF_LIBRARY_RELEASE:FILEPATH=QT_QTMOTIF_LIBRARY_RELEASE-NOTFOUND
  2147. -
  2148. -//Path to a file.
  2149. -QT_QTMULTIMEDIA_INCLUDE_DIR:PATH=QT_QTMULTIMEDIA_INCLUDE_DIR-NOTFOUND
  2150. -
  2151. -//The Qt QTMULTIMEDIA library
  2152. -QT_QTMULTIMEDIA_LIBRARY:STRING=
  2153. -
  2154. -//Path to a library.
  2155. -QT_QTMULTIMEDIA_LIBRARY_DEBUG:FILEPATH=QT_QTMULTIMEDIA_LIBRARY_DEBUG-NOTFOUND
  2156. -
  2157. -//Path to a library.
  2158. -QT_QTMULTIMEDIA_LIBRARY_RELEASE:FILEPATH=QT_QTMULTIMEDIA_LIBRARY_RELEASE-NOTFOUND
  2159. -
  2160. -//Path to a file.
  2161. -QT_QTNETWORK_INCLUDE_DIR:PATH=/usr/include/qt4/QtNetwork
  2162. -
  2163. -//The Qt QTNETWORK library
  2164. -QT_QTNETWORK_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtNetwork.so
  2165. -
  2166. -//Path to a library.
  2167. -QT_QTNETWORK_LIBRARY_DEBUG:FILEPATH=QT_QTNETWORK_LIBRARY_DEBUG-NOTFOUND
  2168. -
  2169. -//Path to a library.
  2170. -QT_QTNETWORK_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtNetwork.so
  2171. -
  2172. -//Path to a file.
  2173. -QT_QTNSPLUGIN_INCLUDE_DIR:PATH=QT_QTNSPLUGIN_INCLUDE_DIR-NOTFOUND
  2174. -
  2175. -//The Qt QTNSPLUGIN library
  2176. -QT_QTNSPLUGIN_LIBRARY:STRING=
  2177. -
  2178. -//Path to a library.
  2179. -QT_QTNSPLUGIN_LIBRARY_DEBUG:FILEPATH=QT_QTNSPLUGIN_LIBRARY_DEBUG-NOTFOUND
  2180. -
  2181. -//Path to a library.
  2182. -QT_QTNSPLUGIN_LIBRARY_RELEASE:FILEPATH=QT_QTNSPLUGIN_LIBRARY_RELEASE-NOTFOUND
  2183. -
  2184. -//Path to a file.
  2185. -QT_QTOPENGL_INCLUDE_DIR:PATH=/usr/include/qt4/QtOpenGL
  2186. -
  2187. -//The Qt QTOPENGL library
  2188. -QT_QTOPENGL_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtOpenGL.so
  2189. -
  2190. -//Path to a library.
  2191. -QT_QTOPENGL_LIBRARY_DEBUG:FILEPATH=QT_QTOPENGL_LIBRARY_DEBUG-NOTFOUND
  2192. -
  2193. -//Path to a library.
  2194. -QT_QTOPENGL_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtOpenGL.so
  2195. -
  2196. -//Path to a library.
  2197. -QT_QTRACEGRAPHICSSYSTEM_PLUGIN_DEBUG:FILEPATH=QT_QTRACEGRAPHICSSYSTEM_PLUGIN_DEBUG-NOTFOUND
  2198. -
  2199. -//Path to a library.
  2200. -QT_QTRACEGRAPHICSSYSTEM_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/graphicssystems/libqtracegraphicssystem.so
  2201. -
  2202. -//Path to a library.
  2203. -QT_QTSCRIPTDBUS_PLUGIN_DEBUG:FILEPATH=QT_QTSCRIPTDBUS_PLUGIN_DEBUG-NOTFOUND
  2204. -
  2205. -//Path to a library.
  2206. -QT_QTSCRIPTDBUS_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/script/libqtscriptdbus.so
  2207. -
  2208. -//Path to a file.
  2209. -QT_QTSCRIPTTOOLS_INCLUDE_DIR:PATH=/usr/include/qt4/QtScriptTools
  2210. -
  2211. -//The Qt QTSCRIPTTOOLS library
  2212. -QT_QTSCRIPTTOOLS_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtScriptTools.so
  2213. -
  2214. -//Path to a library.
  2215. -QT_QTSCRIPTTOOLS_LIBRARY_DEBUG:FILEPATH=QT_QTSCRIPTTOOLS_LIBRARY_DEBUG-NOTFOUND
  2216. -
  2217. -//Path to a library.
  2218. -QT_QTSCRIPTTOOLS_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtScriptTools.so
  2219. -
  2220. -//Path to a file.
  2221. -QT_QTSCRIPT_INCLUDE_DIR:PATH=/usr/include/qt4/QtScript
  2222. -
  2223. -//The Qt QTSCRIPT library
  2224. -QT_QTSCRIPT_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtScript.so
  2225. -
  2226. -//Path to a library.
  2227. -QT_QTSCRIPT_LIBRARY_DEBUG:FILEPATH=QT_QTSCRIPT_LIBRARY_DEBUG-NOTFOUND
  2228. -
  2229. -//Path to a library.
  2230. -QT_QTSCRIPT_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtScript.so
  2231. -
  2232. -//Path to a file.
  2233. -QT_QTSQL_INCLUDE_DIR:PATH=/usr/include/qt4/QtSql
  2234. -
  2235. -//The Qt QTSQL library
  2236. -QT_QTSQL_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtSql.so
  2237. -
  2238. -//Path to a library.
  2239. -QT_QTSQL_LIBRARY_DEBUG:FILEPATH=QT_QTSQL_LIBRARY_DEBUG-NOTFOUND
  2240. -
  2241. -//Path to a library.
  2242. -QT_QTSQL_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtSql.so
  2243. -
  2244. -//Path to a file.
  2245. -QT_QTSVG_INCLUDE_DIR:PATH=/usr/include/qt4/QtSvg
  2246. -
  2247. -//The Qt QTSVG library
  2248. -QT_QTSVG_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtSvg.so
  2249. -
  2250. -//Path to a library.
  2251. -QT_QTSVG_LIBRARY_DEBUG:FILEPATH=QT_QTSVG_LIBRARY_DEBUG-NOTFOUND
  2252. -
  2253. -//Path to a library.
  2254. -QT_QTSVG_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtSvg.so
  2255. -
  2256. -//Path to a file.
  2257. -QT_QTTEST_INCLUDE_DIR:PATH=/usr/include/qt4/QtTest
  2258. -
  2259. -//The Qt QTTEST library
  2260. -QT_QTTEST_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtTest.so
  2261. -
  2262. -//Path to a library.
  2263. -QT_QTTEST_LIBRARY_DEBUG:FILEPATH=QT_QTTEST_LIBRARY_DEBUG-NOTFOUND
  2264. -
  2265. -//Path to a library.
  2266. -QT_QTTEST_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtTest.so
  2267. -
  2268. -//Path to a file.
  2269. -QT_QTUITOOLS_INCLUDE_DIR:PATH=/usr/include/qt4/QtUiTools
  2270. -
  2271. -//The Qt QTUITOOLS library
  2272. -QT_QTUITOOLS_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtUiTools.a
  2273. -
  2274. -//Path to a library.
  2275. -QT_QTUITOOLS_LIBRARY_DEBUG:FILEPATH=QT_QTUITOOLS_LIBRARY_DEBUG-NOTFOUND
  2276. -
  2277. -//Path to a library.
  2278. -QT_QTUITOOLS_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtUiTools.a
  2279. -
  2280. -//Path to a library.
  2281. -QT_QTWCODECS_PLUGIN_DEBUG:FILEPATH=QT_QTWCODECS_PLUGIN_DEBUG-NOTFOUND
  2282. -
  2283. -//Path to a library.
  2284. -QT_QTWCODECS_PLUGIN_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/plugins/codecs/libqtwcodecs.so
  2285. -
  2286. -//Path to a file.
  2287. -QT_QTWEBKIT_INCLUDE_DIR:PATH=/usr/include/qt4/QtWebKit
  2288. -
  2289. -//The Qt QTWEBKIT library
  2290. -QT_QTWEBKIT_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtWebKit.so
  2291. -
  2292. -//Path to a library.
  2293. -QT_QTWEBKIT_LIBRARY_DEBUG:FILEPATH=QT_QTWEBKIT_LIBRARY_DEBUG-NOTFOUND
  2294. -
  2295. -//Path to a library.
  2296. -QT_QTWEBKIT_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtWebKit.so
  2297. -
  2298. -//Path to a file.
  2299. -QT_QTXMLPATTERNS_INCLUDE_DIR:PATH=/usr/include/qt4/QtXmlPatterns
  2300. -
  2301. -//The Qt QTXMLPATTERNS library
  2302. -QT_QTXMLPATTERNS_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtXmlPatterns.so
  2303. -
  2304. -//Path to a library.
  2305. -QT_QTXMLPATTERNS_LIBRARY_DEBUG:FILEPATH=QT_QTXMLPATTERNS_LIBRARY_DEBUG-NOTFOUND
  2306. -
  2307. -//Path to a library.
  2308. -QT_QTXMLPATTERNS_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtXmlPatterns.so
  2309. -
  2310. -//Path to a file.
  2311. -QT_QTXML_INCLUDE_DIR:PATH=/usr/include/qt4/QtXml
  2312. -
  2313. -//The Qt QTXML library
  2314. -QT_QTXML_LIBRARY:STRING=/usr/lib/i386-linux-gnu/libQtXml.so
  2315. -
  2316. -//Path to a library.
  2317. -QT_QTXML_LIBRARY_DEBUG:FILEPATH=QT_QTXML_LIBRARY_DEBUG-NOTFOUND
  2318. -
  2319. -//Path to a library.
  2320. -QT_QTXML_LIBRARY_RELEASE:FILEPATH=/usr/lib/i386-linux-gnu/libQtXml.so
  2321. -
  2322. -//Path to a library.
  2323. -QT_QWEBVIEW_PLUGIN_DEBUG:FILEPATH=QT_QWEBVIEW_PLUGIN_DEBUG-NOTFOUND
  2324. -
  2325. -//Path to a library.
  2326. -QT_QWEBVIEW_PLUGIN_RELEASE:FILEPATH=QT_QWEBVIEW_PLUGIN_RELEASE-NOTFOUND
  2327. -
  2328. -//Path to a library.
  2329. -QT_QWSTSLIBMOUSEHANDLER_PLUGIN_DEBUG:FILEPATH=QT_QWSTSLIBMOUSEHANDLER_PLUGIN_DEBUG-NOTFOUND
  2330. -
  2331. -//Path to a library.
  2332. -QT_QWSTSLIBMOUSEHANDLER_PLUGIN_RELEASE:FILEPATH=QT_QWSTSLIBMOUSEHANDLER_PLUGIN_RELEASE-NOTFOUND
  2333. -
  2334. -//Path to a program.
  2335. -QT_RCC_EXECUTABLE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/bin/rcc
  2336. -
  2337. -//Path to a library.
  2338. -QT_TASKMENUEXTENSION_PLUGIN_DEBUG:FILEPATH=QT_TASKMENUEXTENSION_PLUGIN_DEBUG-NOTFOUND
  2339. -
  2340. -//Path to a library.
  2341. -QT_TASKMENUEXTENSION_PLUGIN_RELEASE:FILEPATH=QT_TASKMENUEXTENSION_PLUGIN_RELEASE-NOTFOUND
  2342. -
  2343. -//The location of the Qt translations
  2344. -QT_TRANSLATIONS_DIR:PATH=/usr/share/qt4/translations
  2345. -
  2346. -//Path to a program.
  2347. -QT_UIC3_EXECUTABLE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/bin/uic3
  2348. -
  2349. -//Path to a program.
  2350. -QT_UIC_EXECUTABLE:FILEPATH=/usr/lib/i386-linux-gnu/qt4/bin/uic
  2351. -
  2352. -//Path to a library.
  2353. -QT_WORLDTIMECLOCKPLUGIN_PLUGIN_DEBUG:FILEPATH=QT_WORLDTIMECLOCKPLUGIN_PLUGIN_DEBUG-NOTFOUND
  2354. -
  2355. -//Path to a library.
  2356. -QT_WORLDTIMECLOCKPLUGIN_PLUGIN_RELEASE:FILEPATH=QT_WORLDTIMECLOCKPLUGIN_PLUGIN_RELEASE-NOTFOUND
  2357. -
  2358. -//The directory containing a CMake configuration file for Qt5Core.
  2359. -Qt5Core_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/Qt5Core
  2360. -
  2361. -//The directory containing a CMake configuration file for Qt5Gui.
  2362. -Qt5Gui_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/Qt5Gui
  2363. -
  2364. -//The directory containing a CMake configuration file for Qt5Widgets.
  2365. -Qt5Widgets_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/Qt5Widgets
  2366. -
  2367. -//The directory containing a CMake configuration file for Qt5Xml.
  2368. -Qt5Xml_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/Qt5Xml
  2369. -
  2370. -//The directory containing a CMake configuration file for Qt5.
  2371. -Qt5_DIR:PATH=/usr/lib/i386-linux-gnu/cmake/Qt5
  2372. -
  2373. -//Dependencies for the target
  2374. -compoundviewer_LIB_DEPENDS:STATIC=general;/usr/lib/libopenbabel.so;general;Qt5::OpenGL;general;KF5::WidgetsAddons;general;avogadro;
  2375. -
  2376. -//Value Computed by CMake
  2377. -concentrationCalculator_BINARY_DIR:STATIC=/home/anu/kalzium/makefile2/plasmoid/applet/concentrationPlasmoid
  2378. -
  2379. -//Dependencies for the target
  2380. -concentrationCalculator_LIB_DEPENDS:STATIC=general;KF5::Plasma;general;KF5::WidgetsAddons;general;KF5::UnitConversion;
  2381. -
  2382. -//Value Computed by CMake
  2383. -concentrationCalculator_SOURCE_DIR:STATIC=/home/anu/kalzium/plasmoid/applet/concentrationPlasmoid
  2384. -
  2385. -//Value Computed by CMake
  2386. -gasCalculator_BINARY_DIR:STATIC=/home/anu/kalzium/makefile2/plasmoid/applet/gasPlasmoid
  2387. -
  2388. -//Dependencies for the target
  2389. -gasCalculator_LIB_DEPENDS:STATIC=general;KF5::Plasma;general;KF5::Ui;general;KF5::WidgetsAddons;general;KF5::UnitConversion;
  2390. -
  2391. -//Value Computed by CMake
  2392. -gasCalculator_SOURCE_DIR:STATIC=/home/anu/kalzium/plasmoid/applet/gasPlasmoid
  2393. -
  2394. -//Value Computed by CMake
  2395. -kalzium_BINARY_DIR:STATIC=/home/anu/kalzium/makefile2
  2396. -
  2397. -//Value Computed by CMake
  2398. -kalzium_SOURCE_DIR:STATIC=/home/anu/kalzium
  2399. -
  2400. -//Value Computed by CMake
  2401. -nuclearCalculator_BINARY_DIR:STATIC=/home/anu/kalzium/makefile2/plasmoid/applet/nuclearPlasmoid
  2402. -
  2403. -//Dependencies for the target
  2404. -nuclearCalculator_LIB_DEPENDS:STATIC=general;KF5::Plasma;general;KF5::Ui;general;KF5::KHtml;general;science;general;KF5::UnitConversion;
  2405. -
  2406. -//Value Computed by CMake
  2407. -nuclearCalculator_SOURCE_DIR:STATIC=/home/anu/kalzium/plasmoid/applet/nuclearPlasmoid
  2408. -
  2409. -//Dependencies for the target
  2410. -plasma_applet_didyouknow_LIB_DEPENDS:STATIC=general;KF5::Plasma;general;KF5::KIOWidgests;general;science;
  2411. -
  2412. -//Dependencies for the target
  2413. -plasma_applet_molmassCalculator_LIB_DEPENDS:STATIC=general;KF5::Plasma;general;KF5::WidgetAddons;general;science;
  2414. -
  2415. -//Dependencies for the target
  2416. -plasma_engine_kalzium_LIB_DEPENDS:STATIC=general;KF5::Plasma;general;Qt5::Xml;general;science;
  2417. -
  2418. -//Dependencies for the target
  2419. -science_LIB_DEPENDS:STATIC=general;Qt5::Xml;general;KF5::UnitConversion;general;KF5::WidgetsAddons;
  2420. -
  2421. -
  2422. -########################
  2423. -# INTERNAL cache entries
  2424. -########################
  2425. -
  2426. -CHEMICAL_MIME_DATA_CFLAGS:INTERNAL=
  2427. -CHEMICAL_MIME_DATA_CFLAGS_I:INTERNAL=
  2428. -CHEMICAL_MIME_DATA_CFLAGS_OTHER:INTERNAL=
  2429. -CHEMICAL_MIME_DATA_FOUND:INTERNAL=1
  2430. -CHEMICAL_MIME_DATA_INCLUDEDIR:INTERNAL=
  2431. -CHEMICAL_MIME_DATA_INCLUDE_DIRS:INTERNAL=
  2432. -CHEMICAL_MIME_DATA_LDFLAGS:INTERNAL=
  2433. -CHEMICAL_MIME_DATA_LDFLAGS_OTHER:INTERNAL=
  2434. -CHEMICAL_MIME_DATA_LIBDIR:INTERNAL=
  2435. -CHEMICAL_MIME_DATA_LIBRARIES:INTERNAL=
  2436. -CHEMICAL_MIME_DATA_LIBRARY_DIRS:INTERNAL=
  2437. -CHEMICAL_MIME_DATA_LIBS:INTERNAL=
  2438. -CHEMICAL_MIME_DATA_LIBS_L:INTERNAL=
  2439. -CHEMICAL_MIME_DATA_LIBS_OTHER:INTERNAL=
  2440. -CHEMICAL_MIME_DATA_LIBS_PATHS:INTERNAL=
  2441. -CHEMICAL_MIME_DATA_PREFIX:INTERNAL=/usr
  2442. -CHEMICAL_MIME_DATA_STATIC_CFLAGS:INTERNAL=
  2443. -CHEMICAL_MIME_DATA_STATIC_CFLAGS_I:INTERNAL=
  2444. -CHEMICAL_MIME_DATA_STATIC_CFLAGS_OTHER:INTERNAL=
  2445. -CHEMICAL_MIME_DATA_STATIC_INCLUDE_DIRS:INTERNAL=
  2446. -CHEMICAL_MIME_DATA_STATIC_LDFLAGS:INTERNAL=
  2447. -CHEMICAL_MIME_DATA_STATIC_LDFLAGS_OTHER:INTERNAL=
  2448. -CHEMICAL_MIME_DATA_STATIC_LIBDIR:INTERNAL=
  2449. -CHEMICAL_MIME_DATA_STATIC_LIBRARIES:INTERNAL=
  2450. -CHEMICAL_MIME_DATA_STATIC_LIBRARY_DIRS:INTERNAL=
  2451. -CHEMICAL_MIME_DATA_STATIC_LIBS:INTERNAL=
  2452. -CHEMICAL_MIME_DATA_STATIC_LIBS_L:INTERNAL=
  2453. -CHEMICAL_MIME_DATA_STATIC_LIBS_OTHER:INTERNAL=
  2454. -CHEMICAL_MIME_DATA_STATIC_LIBS_PATHS:INTERNAL=
  2455. -CHEMICAL_MIME_DATA_VERSION:INTERNAL=0.1.94
  2456. -CHEMICAL_MIME_DATA_chemical-mime-data_INCLUDEDIR:INTERNAL=
  2457. -CHEMICAL_MIME_DATA_chemical-mime-data_LIBDIR:INTERNAL=
  2458. -CHEMICAL_MIME_DATA_chemical-mime-data_PREFIX:INTERNAL=
  2459. -CHEMICAL_MIME_DATA_chemical-mime-data_VERSION:INTERNAL=
  2460. -//ADVANCED property for variable: CMAKE_AR
  2461. -CMAKE_AR-ADVANCED:INTERNAL=1
  2462. -//ADVANCED property for variable: CMAKE_BUILD_TOOL
  2463. -CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1
  2464. -//What is the target build tool cmake is generating for.
  2465. -CMAKE_BUILD_TOOL:INTERNAL=/usr/bin/make
  2466. -//This is the directory where this CMakeCache.txt was created
  2467. -CMAKE_CACHEFILE_DIR:INTERNAL=/home/anu/kalzium/makefile2
  2468. -//Major version of cmake used to create the current loaded cache
  2469. -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2
  2470. -//Minor version of cmake used to create the current loaded cache
  2471. -CMAKE_CACHE_MINOR_VERSION:INTERNAL=8
  2472. -//Patch version of cmake used to create the current loaded cache
  2473. -CMAKE_CACHE_PATCH_VERSION:INTERNAL=12
  2474. -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
  2475. -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
  2476. -//Path to CMake executable.
  2477. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
  2478. -//Path to cpack program executable.
  2479. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
  2480. -//Path to ctest program executable.
  2481. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
  2482. -//ADVANCED property for variable: CMAKE_CXX_COMPILER
  2483. -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
  2484. -//ADVANCED property for variable: CMAKE_CXX_FLAGS
  2485. -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
  2486. -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
  2487. -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  2488. -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
  2489. -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  2490. -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
  2491. -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  2492. -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
  2493. -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  2494. -//ADVANCED property for variable: CMAKE_C_COMPILER
  2495. -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
  2496. -//ADVANCED property for variable: CMAKE_C_FLAGS
  2497. -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
  2498. -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
  2499. -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  2500. -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
  2501. -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  2502. -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
  2503. -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  2504. -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
  2505. -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  2506. -//Executable file format
  2507. -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
  2508. -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
  2509. -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
  2510. -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
  2511. -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  2512. -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
  2513. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  2514. -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
  2515. -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  2516. -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
  2517. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  2518. -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
  2519. -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
  2520. -//Name of generator.
  2521. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles
  2522. -//Name of generator toolset.
  2523. -CMAKE_GENERATOR_TOOLSET:INTERNAL=
  2524. -//Start directory with the top level CMakeLists.txt file for this
  2525. -// project
  2526. -CMAKE_HOME_DIRECTORY:INTERNAL=/home/anu/kalzium
  2527. -//ADVANCED property for variable: CMAKE_INSTALL_APPDIR
  2528. -CMAKE_INSTALL_APPDIR-ADVANCED:INTERNAL=1
  2529. -//ADVANCED property for variable: CMAKE_INSTALL_AUTOSTARTDIR
  2530. -CMAKE_INSTALL_AUTOSTARTDIR-ADVANCED:INTERNAL=1
  2531. -//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
  2532. -CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
  2533. -//ADVANCED property for variable: CMAKE_INSTALL_CMAKEPACKAGEDIR
  2534. -CMAKE_INSTALL_CMAKEPACKAGEDIR-ADVANCED:INTERNAL=1
  2535. -//ADVANCED property for variable: CMAKE_INSTALL_CONFDIR
  2536. -CMAKE_INSTALL_CONFDIR-ADVANCED:INTERNAL=1
  2537. -//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
  2538. -CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
  2539. -//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
  2540. -CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
  2541. -//ADVANCED property for variable: CMAKE_INSTALL_DBUSDIR
  2542. -CMAKE_INSTALL_DBUSDIR-ADVANCED:INTERNAL=1
  2543. -//ADVANCED property for variable: CMAKE_INSTALL_DBUSINTERFACEDIR
  2544. -CMAKE_INSTALL_DBUSINTERFACEDIR-ADVANCED:INTERNAL=1
  2545. -//ADVANCED property for variable: CMAKE_INSTALL_DBUSSERVICEDIR
  2546. -CMAKE_INSTALL_DBUSSERVICEDIR-ADVANCED:INTERNAL=1
  2547. -//ADVANCED property for variable: CMAKE_INSTALL_DBUSSYSTEMSERVICEDIR
  2548. -CMAKE_INSTALL_DBUSSYSTEMSERVICEDIR-ADVANCED:INTERNAL=1
  2549. -//ADVANCED property for variable: CMAKE_INSTALL_DESKTOPDIR
  2550. -CMAKE_INSTALL_DESKTOPDIR-ADVANCED:INTERNAL=1
  2551. -//ADVANCED property for variable: CMAKE_INSTALL_DOCBUNDLEDIR
  2552. -CMAKE_INSTALL_DOCBUNDLEDIR-ADVANCED:INTERNAL=1
  2553. -//ADVANCED property for variable: CMAKE_INSTALL_EXECROOTDIR
  2554. -CMAKE_INSTALL_EXECROOTDIR-ADVANCED:INTERNAL=1
  2555. -//ADVANCED property for variable: CMAKE_INSTALL_ICONDIR
  2556. -CMAKE_INSTALL_ICONDIR-ADVANCED:INTERNAL=1
  2557. -//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
  2558. -CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
  2559. -//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
  2560. -CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
  2561. -//ADVANCED property for variable: CMAKE_INSTALL_KCFGDIR
  2562. -CMAKE_INSTALL_KCFGDIR-ADVANCED:INTERNAL=1
  2563. -//ADVANCED property for variable: CMAKE_INSTALL_KCONFUPDATEDIR
  2564. -CMAKE_INSTALL_KCONFUPDATEDIR-ADVANCED:INTERNAL=1
  2565. -//ADVANCED property for variable: CMAKE_INSTALL_KNOTIFY5RCDIR
  2566. -CMAKE_INSTALL_KNOTIFY5RCDIR-ADVANCED:INTERNAL=1
  2567. -//ADVANCED property for variable: CMAKE_INSTALL_KSERVICES5DIR
  2568. -CMAKE_INSTALL_KSERVICES5DIR-ADVANCED:INTERNAL=1
  2569. -//ADVANCED property for variable: CMAKE_INSTALL_KSERVICETYPES5DIR
  2570. -CMAKE_INSTALL_KSERVICETYPES5DIR-ADVANCED:INTERNAL=1
  2571. -//ADVANCED property for variable: CMAKE_INSTALL_KXMLGUI5DIR
  2572. -CMAKE_INSTALL_KXMLGUI5DIR-ADVANCED:INTERNAL=1
  2573. -//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
  2574. -CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
  2575. -//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
  2576. -CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
  2577. -//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
  2578. -CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
  2579. -//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
  2580. -CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
  2581. -//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
  2582. -CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
  2583. -//ADVANCED property for variable: CMAKE_INSTALL_METAINFODIR
  2584. -CMAKE_INSTALL_METAINFODIR-ADVANCED:INTERNAL=1
  2585. -//ADVANCED property for variable: CMAKE_INSTALL_MIMEDIR
  2586. -CMAKE_INSTALL_MIMEDIR-ADVANCED:INTERNAL=1
  2587. -//ADVANCED property for variable: CMAKE_INSTALL_PLUGINDIR
  2588. -CMAKE_INSTALL_PLUGINDIR-ADVANCED:INTERNAL=1
  2589. -//ADVANCED property for variable: CMAKE_INSTALL_QMLDIR
  2590. -CMAKE_INSTALL_QMLDIR-ADVANCED:INTERNAL=1
  2591. -//ADVANCED property for variable: CMAKE_INSTALL_QTPLUGINDIR
  2592. -CMAKE_INSTALL_QTPLUGINDIR-ADVANCED:INTERNAL=1
  2593. -//ADVANCED property for variable: CMAKE_INSTALL_QTQUICKIMPORTSDIR
  2594. -CMAKE_INSTALL_QTQUICKIMPORTSDIR-ADVANCED:INTERNAL=1
  2595. -//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
  2596. -CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
  2597. -//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
  2598. -CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
  2599. -//ADVANCED property for variable: CMAKE_INSTALL_SOUNDDIR
  2600. -CMAKE_INSTALL_SOUNDDIR-ADVANCED:INTERNAL=1
  2601. -//Install .so files without execute permission.
  2602. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
  2603. -//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
  2604. -CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
  2605. -//ADVANCED property for variable: CMAKE_INSTALL_TEMPLATEDIR
  2606. -CMAKE_INSTALL_TEMPLATEDIR-ADVANCED:INTERNAL=1
  2607. -//ADVANCED property for variable: CMAKE_INSTALL_WALLPAPERDIR
  2608. -CMAKE_INSTALL_WALLPAPERDIR-ADVANCED:INTERNAL=1
  2609. -//ADVANCED property for variable: CMAKE_LINKER
  2610. -CMAKE_LINKER-ADVANCED:INTERNAL=1
  2611. -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
  2612. -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
  2613. -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
  2614. -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
  2615. -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
  2616. -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  2617. -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
  2618. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  2619. -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
  2620. -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  2621. -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
  2622. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  2623. -//ADVANCED property for variable: CMAKE_NM
  2624. -CMAKE_NM-ADVANCED:INTERNAL=1
  2625. -//number of local generators
  2626. -CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=26
  2627. -//ADVANCED property for variable: CMAKE_OBJCOPY
  2628. -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
  2629. -//ADVANCED property for variable: CMAKE_OBJDUMP
  2630. -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
  2631. -//ADVANCED property for variable: CMAKE_RANLIB
  2632. -CMAKE_RANLIB-ADVANCED:INTERNAL=1
  2633. -//Path to CMake installation.
  2634. -CMAKE_ROOT:INTERNAL=/usr/share/cmake-2.8
  2635. -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
  2636. -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
  2637. -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
  2638. -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  2639. -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
  2640. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  2641. -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
  2642. -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  2643. -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
  2644. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  2645. -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
  2646. -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
  2647. -//ADVANCED property for variable: CMAKE_SKIP_RPATH
  2648. -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
  2649. -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
  2650. -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
  2651. -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
  2652. -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  2653. -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
  2654. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  2655. -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
  2656. -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  2657. -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
  2658. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  2659. -//ADVANCED property for variable: CMAKE_STRIP
  2660. -CMAKE_STRIP-ADVANCED:INTERNAL=1
  2661. -//uname command
  2662. -CMAKE_UNAME:INTERNAL=/bin/uname
  2663. -//ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS
  2664. -CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1
  2665. -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
  2666. -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
  2667. -//ADVANCED property for variable: EIGEN2_INCLUDE_DIR
  2668. -EIGEN2_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2669. -//ADVANCED property for variable: EIGEN3_INCLUDE_DIR
  2670. -EIGEN3_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2671. -//Details about finding Eigen2
  2672. -FIND_PACKAGE_MESSAGE_DETAILS_Eigen2:INTERNAL=[/usr/include/eigen2][TRUE][v(2.0.0)]
  2673. -//Details about finding Eigen3
  2674. -FIND_PACKAGE_MESSAGE_DETAILS_Eigen3:INTERNAL=[/usr/include/eigen3][TRUE][v(2.91.0)]
  2675. -//Details about finding KF5
  2676. -FIND_PACKAGE_MESSAGE_DETAILS_KF5:INTERNAL=[success][cfound components:  CoreAddons Solid Config ][v5.3.0()]
  2677. -//Details about finding KF5Config
  2678. -FIND_PACKAGE_MESSAGE_DETAILS_KF5Config:INTERNAL=[/usr/lib/i386-linux-gnu/cmake/KF5Config/KF5ConfigConfig.cmake][v5.3.0()]
  2679. -//Details about finding KF5CoreAddons
  2680. -FIND_PACKAGE_MESSAGE_DETAILS_KF5CoreAddons:INTERNAL=[/usr/lib/i386-linux-gnu/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake][v5.3.0()]
  2681. -//Details about finding KF5Solid
  2682. -FIND_PACKAGE_MESSAGE_DETAILS_KF5Solid:INTERNAL=[/usr/lib/i386-linux-gnu/cmake/KF5Solid/KF5SolidConfig.cmake][v5.3.0()]
  2683. -//Details about finding Libfacile
  2684. -FIND_PACKAGE_MESSAGE_DETAILS_Libfacile:INTERNAL=[/usr/lib/ocaml/facile][/usr/lib/ocaml/facile/facile.a][TRUE][v()]
  2685. -//Details about finding PkgConfig
  2686. -FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v0.28()]
  2687. -//Details about finding Qt4
  2688. -FIND_PACKAGE_MESSAGE_DETAILS_Qt4:INTERNAL=[/usr/bin/qmake][/usr/lib/i386-linux-gnu/qt5/bin/moc][/usr/lib/i386-linux-gnu/qt4/bin/rcc][/usr/lib/i386-linux-gnu/qt4/bin/uic][/usr/include/qt4][/usr/lib/i386-linux-gnu][/usr/lib/i386-linux-gnu/libQtCore.so][v4.8.6()]
  2689. -//Have includes ieeefp.h
  2690. -HAVE_IEEEFP_H:INTERNAL=
  2691. -//Have symbol __GLIBC__
  2692. -LIBC_IS_GLIBC:INTERNAL=1
  2693. -//ADVANCED property for variable: LIBFACILE_INCLUDE_DIR
  2694. -LIBFACILE_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2695. -//ADVANCED property for variable: LIBFACILE_LIBRARIES
  2696. -LIBFACILE_LIBRARIES-ADVANCED:INTERNAL=1
  2697. -//ADVANCED property for variable: OPENBABEL2_INCLUDE_DIR
  2698. -OPENBABEL2_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2699. -//ADVANCED property for variable: OPENBABEL2_LIBRARIES
  2700. -OPENBABEL2_LIBRARIES-ADVANCED:INTERNAL=1
  2701. -PC_OPENBABEL2_CFLAGS:INTERNAL=-I/usr/include/openbabel-2.0
  2702. -PC_OPENBABEL2_CFLAGS_I:INTERNAL=
  2703. -PC_OPENBABEL2_CFLAGS_OTHER:INTERNAL=
  2704. -PC_OPENBABEL2_FOUND:INTERNAL=1
  2705. -PC_OPENBABEL2_INCLUDEDIR:INTERNAL=/usr/include
  2706. -PC_OPENBABEL2_INCLUDE_DIRS:INTERNAL=/usr/include/openbabel-2.0
  2707. -PC_OPENBABEL2_LDFLAGS:INTERNAL=-lopenbabel
  2708. -PC_OPENBABEL2_LDFLAGS_OTHER:INTERNAL=
  2709. -PC_OPENBABEL2_LIBDIR:INTERNAL=/usr/lib
  2710. -PC_OPENBABEL2_LIBRARIES:INTERNAL=openbabel
  2711. -PC_OPENBABEL2_LIBRARY_DIRS:INTERNAL=
  2712. -PC_OPENBABEL2_LIBS:INTERNAL=
  2713. -PC_OPENBABEL2_LIBS_L:INTERNAL=
  2714. -PC_OPENBABEL2_LIBS_OTHER:INTERNAL=
  2715. -PC_OPENBABEL2_LIBS_PATHS:INTERNAL=
  2716. -PC_OPENBABEL2_PREFIX:INTERNAL=/usr
  2717. -PC_OPENBABEL2_STATIC_CFLAGS:INTERNAL=-I/usr/include/openbabel-2.0
  2718. -PC_OPENBABEL2_STATIC_CFLAGS_I:INTERNAL=
  2719. -PC_OPENBABEL2_STATIC_CFLAGS_OTHER:INTERNAL=
  2720. -PC_OPENBABEL2_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/openbabel-2.0
  2721. -PC_OPENBABEL2_STATIC_LDFLAGS:INTERNAL=-lopenbabel
  2722. -PC_OPENBABEL2_STATIC_LDFLAGS_OTHER:INTERNAL=
  2723. -PC_OPENBABEL2_STATIC_LIBDIR:INTERNAL=
  2724. -PC_OPENBABEL2_STATIC_LIBRARIES:INTERNAL=openbabel
  2725. -PC_OPENBABEL2_STATIC_LIBRARY_DIRS:INTERNAL=
  2726. -PC_OPENBABEL2_STATIC_LIBS:INTERNAL=
  2727. -PC_OPENBABEL2_STATIC_LIBS_L:INTERNAL=
  2728. -PC_OPENBABEL2_STATIC_LIBS_OTHER:INTERNAL=
  2729. -PC_OPENBABEL2_STATIC_LIBS_PATHS:INTERNAL=
  2730. -PC_OPENBABEL2_VERSION:INTERNAL=2.3.2
  2731. -PC_OPENBABEL2_openbabel-2.0_INCLUDEDIR:INTERNAL=
  2732. -PC_OPENBABEL2_openbabel-2.0_LIBDIR:INTERNAL=
  2733. -PC_OPENBABEL2_openbabel-2.0_PREFIX:INTERNAL=
  2734. -PC_OPENBABEL2_openbabel-2.0_VERSION:INTERNAL=
  2735. -//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
  2736. -PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
  2737. -//ADVANCED property for variable: QT_ARTHURPLUGIN_PLUGIN_DEBUG
  2738. -QT_ARTHURPLUGIN_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2739. -//ADVANCED property for variable: QT_ARTHURPLUGIN_PLUGIN_RELEASE
  2740. -QT_ARTHURPLUGIN_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2741. -QT_BINARY_DIR:INTERNAL=/usr/lib/i386-linux-gnu/qt4/bin
  2742. -//ADVANCED property for variable: QT_CONTAINEREXTENSION_PLUGIN_DEBUG
  2743. -QT_CONTAINEREXTENSION_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2744. -//ADVANCED property for variable: QT_CONTAINEREXTENSION_PLUGIN_RELEASE
  2745. -QT_CONTAINEREXTENSION_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2746. -//ADVANCED property for variable: QT_CUSTOMWIDGETPLUGIN_PLUGIN_DEBUG
  2747. -QT_CUSTOMWIDGETPLUGIN_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2748. -//ADVANCED property for variable: QT_CUSTOMWIDGETPLUGIN_PLUGIN_RELEASE
  2749. -QT_CUSTOMWIDGETPLUGIN_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2750. -//ADVANCED property for variable: QT_DBUSCPP2XML_EXECUTABLE
  2751. -QT_DBUSCPP2XML_EXECUTABLE-ADVANCED:INTERNAL=1
  2752. -//ADVANCED property for variable: QT_DBUSXML2CPP_EXECUTABLE
  2753. -QT_DBUSXML2CPP_EXECUTABLE-ADVANCED:INTERNAL=1
  2754. -//ADVANCED property for variable: QT_DESIGNER_EXECUTABLE
  2755. -QT_DESIGNER_EXECUTABLE-ADVANCED:INTERNAL=1
  2756. -//ADVANCED property for variable: QT_DOC_DIR
  2757. -QT_DOC_DIR-ADVANCED:INTERNAL=1
  2758. -QT_HEADERS_DIR:INTERNAL=/usr/include/qt4
  2759. -//ADVANCED property for variable: QT_IMPORTS_DIR
  2760. -QT_IMPORTS_DIR-ADVANCED:INTERNAL=1
  2761. -//ADVANCED property for variable: QT_LIBRARY_DIR
  2762. -QT_LIBRARY_DIR-ADVANCED:INTERNAL=1
  2763. -//Qt library dir
  2764. -QT_LIBRARY_DIR:INTERNAL=/usr/lib/i386-linux-gnu
  2765. -//ADVANCED property for variable: QT_LINGUIST_EXECUTABLE
  2766. -QT_LINGUIST_EXECUTABLE-ADVANCED:INTERNAL=1
  2767. -//ADVANCED property for variable: QT_LRELEASE_EXECUTABLE
  2768. -QT_LRELEASE_EXECUTABLE-ADVANCED:INTERNAL=1
  2769. -//ADVANCED property for variable: QT_LUPDATE_EXECUTABLE
  2770. -QT_LUPDATE_EXECUTABLE-ADVANCED:INTERNAL=1
  2771. -//ADVANCED property for variable: QT_MKSPECS_DIR
  2772. -QT_MKSPECS_DIR-ADVANCED:INTERNAL=1
  2773. -//ADVANCED property for variable: QT_MOC_EXECUTABLE
  2774. -QT_MOC_EXECUTABLE-ADVANCED:INTERNAL=1
  2775. -//ADVANCED property for variable: QT_PHONONWIDGETS_PLUGIN_DEBUG
  2776. -QT_PHONONWIDGETS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2777. -//ADVANCED property for variable: QT_PHONONWIDGETS_PLUGIN_RELEASE
  2778. -QT_PHONONWIDGETS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2779. -//ADVANCED property for variable: QT_PHONON_INCLUDE_DIR
  2780. -QT_PHONON_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2781. -//ADVANCED property for variable: QT_PHONON_LIBRARY
  2782. -QT_PHONON_LIBRARY-ADVANCED:INTERNAL=1
  2783. -//ADVANCED property for variable: QT_PHONON_LIBRARY_DEBUG
  2784. -QT_PHONON_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2785. -//ADVANCED property for variable: QT_PHONON_LIBRARY_RELEASE
  2786. -QT_PHONON_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2787. -//ADVANCED property for variable: QT_PLUGINS_DIR
  2788. -QT_PLUGINS_DIR-ADVANCED:INTERNAL=1
  2789. -//ADVANCED property for variable: QT_QCNCODECS_PLUGIN_DEBUG
  2790. -QT_QCNCODECS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2791. -//ADVANCED property for variable: QT_QCNCODECS_PLUGIN_RELEASE
  2792. -QT_QCNCODECS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2793. -//ADVANCED property for variable: QT_QCOLLECTIONGENERATOR_EXECUTABLE
  2794. -QT_QCOLLECTIONGENERATOR_EXECUTABLE-ADVANCED:INTERNAL=1
  2795. -//ADVANCED property for variable: QT_QCOREWLANBEARER_PLUGIN_DEBUG
  2796. -QT_QCOREWLANBEARER_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2797. -//ADVANCED property for variable: QT_QCOREWLANBEARER_PLUGIN_RELEASE
  2798. -QT_QCOREWLANBEARER_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2799. -//ADVANCED property for variable: QT_QDECLARATIVEVIEW_PLUGIN_DEBUG
  2800. -QT_QDECLARATIVEVIEW_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2801. -//ADVANCED property for variable: QT_QDECLARATIVEVIEW_PLUGIN_RELEASE
  2802. -QT_QDECLARATIVEVIEW_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2803. -//ADVANCED property for variable: QT_QDECORATIONDEFAULT_PLUGIN_DEBUG
  2804. -QT_QDECORATIONDEFAULT_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2805. -//ADVANCED property for variable: QT_QDECORATIONDEFAULT_PLUGIN_RELEASE
  2806. -QT_QDECORATIONDEFAULT_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2807. -//ADVANCED property for variable: QT_QDECORATIONWINDOWS_PLUGIN_DEBUG
  2808. -QT_QDECORATIONWINDOWS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2809. -//ADVANCED property for variable: QT_QDECORATIONWINDOWS_PLUGIN_RELEASE
  2810. -QT_QDECORATIONWINDOWS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2811. -//ADVANCED property for variable: QT_QGENERICBEARER_PLUGIN_DEBUG
  2812. -QT_QGENERICBEARER_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2813. -//ADVANCED property for variable: QT_QGENERICBEARER_PLUGIN_RELEASE
  2814. -QT_QGENERICBEARER_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2815. -//ADVANCED property for variable: QT_QGIF_PLUGIN_DEBUG
  2816. -QT_QGIF_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2817. -//ADVANCED property for variable: QT_QGIF_PLUGIN_RELEASE
  2818. -QT_QGIF_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2819. -//ADVANCED property for variable: QT_QGLGRAPHICSSYSTEM_PLUGIN_DEBUG
  2820. -QT_QGLGRAPHICSSYSTEM_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2821. -//ADVANCED property for variable: QT_QGLGRAPHICSSYSTEM_PLUGIN_RELEASE
  2822. -QT_QGLGRAPHICSSYSTEM_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2823. -//ADVANCED property for variable: QT_QICO_PLUGIN_DEBUG
  2824. -QT_QICO_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2825. -//ADVANCED property for variable: QT_QICO_PLUGIN_RELEASE
  2826. -QT_QICO_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2827. -//ADVANCED property for variable: QT_QIMSW_MULTI_PLUGIN_DEBUG
  2828. -QT_QIMSW_MULTI_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2829. -//ADVANCED property for variable: QT_QIMSW_MULTI_PLUGIN_RELEASE
  2830. -QT_QIMSW_MULTI_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2831. -//ADVANCED property for variable: QT_QJPCODECS_PLUGIN_DEBUG
  2832. -QT_QJPCODECS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2833. -//ADVANCED property for variable: QT_QJPCODECS_PLUGIN_RELEASE
  2834. -QT_QJPCODECS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2835. -//ADVANCED property for variable: QT_QJPEG_PLUGIN_DEBUG
  2836. -QT_QJPEG_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2837. -//ADVANCED property for variable: QT_QJPEG_PLUGIN_RELEASE
  2838. -QT_QJPEG_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2839. -//ADVANCED property for variable: QT_QKRCODECS_PLUGIN_DEBUG
  2840. -QT_QKRCODECS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2841. -//ADVANCED property for variable: QT_QKRCODECS_PLUGIN_RELEASE
  2842. -QT_QKRCODECS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2843. -QT_QMAKE_EXECUTABLE_LAST:INTERNAL=/usr/bin/qmake
  2844. -//ADVANCED property for variable: QT_QMNG_PLUGIN_DEBUG
  2845. -QT_QMNG_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2846. -//ADVANCED property for variable: QT_QMNG_PLUGIN_RELEASE
  2847. -QT_QMNG_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2848. -//ADVANCED property for variable: QT_QSQLDB2_PLUGIN_DEBUG
  2849. -QT_QSQLDB2_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2850. -//ADVANCED property for variable: QT_QSQLDB2_PLUGIN_RELEASE
  2851. -QT_QSQLDB2_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2852. -//ADVANCED property for variable: QT_QSQLIBASE_PLUGIN_DEBUG
  2853. -QT_QSQLIBASE_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2854. -//ADVANCED property for variable: QT_QSQLIBASE_PLUGIN_RELEASE
  2855. -QT_QSQLIBASE_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2856. -//ADVANCED property for variable: QT_QSQLITE2_PLUGIN_DEBUG
  2857. -QT_QSQLITE2_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2858. -//ADVANCED property for variable: QT_QSQLITE2_PLUGIN_RELEASE
  2859. -QT_QSQLITE2_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2860. -//ADVANCED property for variable: QT_QSQLITE_PLUGIN_DEBUG
  2861. -QT_QSQLITE_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2862. -//ADVANCED property for variable: QT_QSQLITE_PLUGIN_RELEASE
  2863. -QT_QSQLITE_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2864. -//ADVANCED property for variable: QT_QSQLMYSQL_PLUGIN_DEBUG
  2865. -QT_QSQLMYSQL_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2866. -//ADVANCED property for variable: QT_QSQLMYSQL_PLUGIN_RELEASE
  2867. -QT_QSQLMYSQL_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2868. -//ADVANCED property for variable: QT_QSQLOCI_PLUGIN_DEBUG
  2869. -QT_QSQLOCI_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2870. -//ADVANCED property for variable: QT_QSQLOCI_PLUGIN_RELEASE
  2871. -QT_QSQLOCI_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2872. -//ADVANCED property for variable: QT_QSQLODBC_PLUGIN_DEBUG
  2873. -QT_QSQLODBC_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2874. -//ADVANCED property for variable: QT_QSQLODBC_PLUGIN_RELEASE
  2875. -QT_QSQLODBC_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2876. -//ADVANCED property for variable: QT_QSQLPSQL_PLUGIN_DEBUG
  2877. -QT_QSQLPSQL_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2878. -//ADVANCED property for variable: QT_QSQLPSQL_PLUGIN_RELEASE
  2879. -QT_QSQLPSQL_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2880. -//ADVANCED property for variable: QT_QSQLTDS_PLUGIN_DEBUG
  2881. -QT_QSQLTDS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2882. -//ADVANCED property for variable: QT_QSQLTDS_PLUGIN_RELEASE
  2883. -QT_QSQLTDS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2884. -//ADVANCED property for variable: QT_QSVGICON_PLUGIN_DEBUG
  2885. -QT_QSVGICON_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2886. -//ADVANCED property for variable: QT_QSVGICON_PLUGIN_RELEASE
  2887. -QT_QSVGICON_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2888. -//ADVANCED property for variable: QT_QSVG_PLUGIN_DEBUG
  2889. -QT_QSVG_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2890. -//ADVANCED property for variable: QT_QSVG_PLUGIN_RELEASE
  2891. -QT_QSVG_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2892. -//ADVANCED property for variable: QT_QT3SUPPORTWIDGETS_PLUGIN_DEBUG
  2893. -QT_QT3SUPPORTWIDGETS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2894. -//ADVANCED property for variable: QT_QT3SUPPORTWIDGETS_PLUGIN_RELEASE
  2895. -QT_QT3SUPPORTWIDGETS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2896. -//ADVANCED property for variable: QT_QT3SUPPORT_INCLUDE_DIR
  2897. -QT_QT3SUPPORT_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2898. -//ADVANCED property for variable: QT_QT3SUPPORT_LIBRARY
  2899. -QT_QT3SUPPORT_LIBRARY-ADVANCED:INTERNAL=1
  2900. -//ADVANCED property for variable: QT_QT3SUPPORT_LIBRARY_DEBUG
  2901. -QT_QT3SUPPORT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2902. -//ADVANCED property for variable: QT_QT3SUPPORT_LIBRARY_RELEASE
  2903. -QT_QT3SUPPORT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2904. -//ADVANCED property for variable: QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_DEBUG
  2905. -QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2906. -//ADVANCED property for variable: QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_RELEASE
  2907. -QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2908. -//ADVANCED property for variable: QT_QTACCESSIBLEWIDGETS_PLUGIN_DEBUG
  2909. -QT_QTACCESSIBLEWIDGETS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2910. -//ADVANCED property for variable: QT_QTACCESSIBLEWIDGETS_PLUGIN_RELEASE
  2911. -QT_QTACCESSIBLEWIDGETS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2912. -//ADVANCED property for variable: QT_QTASSISTANTCLIENT_INCLUDE_DIR
  2913. -QT_QTASSISTANTCLIENT_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2914. -//ADVANCED property for variable: QT_QTASSISTANTCLIENT_LIBRARY
  2915. -QT_QTASSISTANTCLIENT_LIBRARY-ADVANCED:INTERNAL=1
  2916. -//ADVANCED property for variable: QT_QTASSISTANTCLIENT_LIBRARY_DEBUG
  2917. -QT_QTASSISTANTCLIENT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2918. -//ADVANCED property for variable: QT_QTASSISTANTCLIENT_LIBRARY_RELEASE
  2919. -QT_QTASSISTANTCLIENT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2920. -//ADVANCED property for variable: QT_QTASSISTANT_INCLUDE_DIR
  2921. -QT_QTASSISTANT_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2922. -//ADVANCED property for variable: QT_QTASSISTANT_LIBRARY
  2923. -QT_QTASSISTANT_LIBRARY-ADVANCED:INTERNAL=1
  2924. -//ADVANCED property for variable: QT_QTASSISTANT_LIBRARY_DEBUG
  2925. -QT_QTASSISTANT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2926. -//ADVANCED property for variable: QT_QTASSISTANT_LIBRARY_RELEASE
  2927. -QT_QTASSISTANT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2928. -//ADVANCED property for variable: QT_QTCLUCENE_LIBRARY
  2929. -QT_QTCLUCENE_LIBRARY-ADVANCED:INTERNAL=1
  2930. -//ADVANCED property for variable: QT_QTCLUCENE_LIBRARY_DEBUG
  2931. -QT_QTCLUCENE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2932. -//ADVANCED property for variable: QT_QTCLUCENE_LIBRARY_RELEASE
  2933. -QT_QTCLUCENE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2934. -//ADVANCED property for variable: QT_QTCORE_INCLUDE_DIR
  2935. -QT_QTCORE_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2936. -//ADVANCED property for variable: QT_QTCORE_LIBRARY
  2937. -QT_QTCORE_LIBRARY-ADVANCED:INTERNAL=1
  2938. -//ADVANCED property for variable: QT_QTCORE_LIBRARY_DEBUG
  2939. -QT_QTCORE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2940. -//ADVANCED property for variable: QT_QTCORE_LIBRARY_RELEASE
  2941. -QT_QTCORE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2942. -//ADVANCED property for variable: QT_QTDBUS_INCLUDE_DIR
  2943. -QT_QTDBUS_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2944. -//ADVANCED property for variable: QT_QTDBUS_LIBRARY
  2945. -QT_QTDBUS_LIBRARY-ADVANCED:INTERNAL=1
  2946. -//ADVANCED property for variable: QT_QTDBUS_LIBRARY_DEBUG
  2947. -QT_QTDBUS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2948. -//ADVANCED property for variable: QT_QTDBUS_LIBRARY_RELEASE
  2949. -QT_QTDBUS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2950. -//ADVANCED property for variable: QT_QTDECLARATIVE_INCLUDE_DIR
  2951. -QT_QTDECLARATIVE_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2952. -//ADVANCED property for variable: QT_QTDECLARATIVE_LIBRARY
  2953. -QT_QTDECLARATIVE_LIBRARY-ADVANCED:INTERNAL=1
  2954. -//ADVANCED property for variable: QT_QTDECLARATIVE_LIBRARY_DEBUG
  2955. -QT_QTDECLARATIVE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2956. -//ADVANCED property for variable: QT_QTDECLARATIVE_LIBRARY_RELEASE
  2957. -QT_QTDECLARATIVE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2958. -//ADVANCED property for variable: QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR
  2959. -QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2960. -//ADVANCED property for variable: QT_QTDESIGNERCOMPONENTS_LIBRARY
  2961. -QT_QTDESIGNERCOMPONENTS_LIBRARY-ADVANCED:INTERNAL=1
  2962. -//ADVANCED property for variable: QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG
  2963. -QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2964. -//ADVANCED property for variable: QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE
  2965. -QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2966. -//ADVANCED property for variable: QT_QTDESIGNER_INCLUDE_DIR
  2967. -QT_QTDESIGNER_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2968. -//ADVANCED property for variable: QT_QTDESIGNER_LIBRARY
  2969. -QT_QTDESIGNER_LIBRARY-ADVANCED:INTERNAL=1
  2970. -//ADVANCED property for variable: QT_QTDESIGNER_LIBRARY_DEBUG
  2971. -QT_QTDESIGNER_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2972. -//ADVANCED property for variable: QT_QTDESIGNER_LIBRARY_RELEASE
  2973. -QT_QTDESIGNER_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2974. -//ADVANCED property for variable: QT_QTGUI_INCLUDE_DIR
  2975. -QT_QTGUI_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2976. -//ADVANCED property for variable: QT_QTGUI_LIBRARY
  2977. -QT_QTGUI_LIBRARY-ADVANCED:INTERNAL=1
  2978. -//ADVANCED property for variable: QT_QTGUI_LIBRARY_DEBUG
  2979. -QT_QTGUI_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2980. -//ADVANCED property for variable: QT_QTGUI_LIBRARY_RELEASE
  2981. -QT_QTGUI_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2982. -//ADVANCED property for variable: QT_QTHELP_INCLUDE_DIR
  2983. -QT_QTHELP_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2984. -//ADVANCED property for variable: QT_QTHELP_LIBRARY
  2985. -QT_QTHELP_LIBRARY-ADVANCED:INTERNAL=1
  2986. -//ADVANCED property for variable: QT_QTHELP_LIBRARY_DEBUG
  2987. -QT_QTHELP_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  2988. -//ADVANCED property for variable: QT_QTHELP_LIBRARY_RELEASE
  2989. -QT_QTHELP_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  2990. -//ADVANCED property for variable: QT_QTIFF_PLUGIN_DEBUG
  2991. -QT_QTIFF_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  2992. -//ADVANCED property for variable: QT_QTIFF_PLUGIN_RELEASE
  2993. -QT_QTIFF_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  2994. -//ADVANCED property for variable: QT_QTMOTIF_INCLUDE_DIR
  2995. -QT_QTMOTIF_INCLUDE_DIR-ADVANCED:INTERNAL=1
  2996. -//ADVANCED property for variable: QT_QTMOTIF_LIBRARY
  2997. -QT_QTMOTIF_LIBRARY-ADVANCED:INTERNAL=1
  2998. -//ADVANCED property for variable: QT_QTMOTIF_LIBRARY_DEBUG
  2999. -QT_QTMOTIF_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3000. -//ADVANCED property for variable: QT_QTMOTIF_LIBRARY_RELEASE
  3001. -QT_QTMOTIF_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3002. -//ADVANCED property for variable: QT_QTMULTIMEDIA_INCLUDE_DIR
  3003. -QT_QTMULTIMEDIA_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3004. -//ADVANCED property for variable: QT_QTMULTIMEDIA_LIBRARY
  3005. -QT_QTMULTIMEDIA_LIBRARY-ADVANCED:INTERNAL=1
  3006. -//ADVANCED property for variable: QT_QTMULTIMEDIA_LIBRARY_DEBUG
  3007. -QT_QTMULTIMEDIA_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3008. -//ADVANCED property for variable: QT_QTMULTIMEDIA_LIBRARY_RELEASE
  3009. -QT_QTMULTIMEDIA_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3010. -//ADVANCED property for variable: QT_QTNETWORK_INCLUDE_DIR
  3011. -QT_QTNETWORK_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3012. -//ADVANCED property for variable: QT_QTNETWORK_LIBRARY
  3013. -QT_QTNETWORK_LIBRARY-ADVANCED:INTERNAL=1
  3014. -//ADVANCED property for variable: QT_QTNETWORK_LIBRARY_DEBUG
  3015. -QT_QTNETWORK_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3016. -//ADVANCED property for variable: QT_QTNETWORK_LIBRARY_RELEASE
  3017. -QT_QTNETWORK_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3018. -//ADVANCED property for variable: QT_QTNSPLUGIN_INCLUDE_DIR
  3019. -QT_QTNSPLUGIN_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3020. -//ADVANCED property for variable: QT_QTNSPLUGIN_LIBRARY
  3021. -QT_QTNSPLUGIN_LIBRARY-ADVANCED:INTERNAL=1
  3022. -//ADVANCED property for variable: QT_QTNSPLUGIN_LIBRARY_DEBUG
  3023. -QT_QTNSPLUGIN_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3024. -//ADVANCED property for variable: QT_QTNSPLUGIN_LIBRARY_RELEASE
  3025. -QT_QTNSPLUGIN_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3026. -//ADVANCED property for variable: QT_QTOPENGL_INCLUDE_DIR
  3027. -QT_QTOPENGL_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3028. -//ADVANCED property for variable: QT_QTOPENGL_LIBRARY
  3029. -QT_QTOPENGL_LIBRARY-ADVANCED:INTERNAL=1
  3030. -//ADVANCED property for variable: QT_QTOPENGL_LIBRARY_DEBUG
  3031. -QT_QTOPENGL_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3032. -//ADVANCED property for variable: QT_QTOPENGL_LIBRARY_RELEASE
  3033. -QT_QTOPENGL_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3034. -//ADVANCED property for variable: QT_QTRACEGRAPHICSSYSTEM_PLUGIN_DEBUG
  3035. -QT_QTRACEGRAPHICSSYSTEM_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  3036. -//ADVANCED property for variable: QT_QTRACEGRAPHICSSYSTEM_PLUGIN_RELEASE
  3037. -QT_QTRACEGRAPHICSSYSTEM_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  3038. -//ADVANCED property for variable: QT_QTSCRIPTDBUS_PLUGIN_DEBUG
  3039. -QT_QTSCRIPTDBUS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  3040. -//ADVANCED property for variable: QT_QTSCRIPTDBUS_PLUGIN_RELEASE
  3041. -QT_QTSCRIPTDBUS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  3042. -//ADVANCED property for variable: QT_QTSCRIPTTOOLS_INCLUDE_DIR
  3043. -QT_QTSCRIPTTOOLS_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3044. -//ADVANCED property for variable: QT_QTSCRIPTTOOLS_LIBRARY
  3045. -QT_QTSCRIPTTOOLS_LIBRARY-ADVANCED:INTERNAL=1
  3046. -//ADVANCED property for variable: QT_QTSCRIPTTOOLS_LIBRARY_DEBUG
  3047. -QT_QTSCRIPTTOOLS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3048. -//ADVANCED property for variable: QT_QTSCRIPTTOOLS_LIBRARY_RELEASE
  3049. -QT_QTSCRIPTTOOLS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3050. -//ADVANCED property for variable: QT_QTSCRIPT_INCLUDE_DIR
  3051. -QT_QTSCRIPT_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3052. -//ADVANCED property for variable: QT_QTSCRIPT_LIBRARY
  3053. -QT_QTSCRIPT_LIBRARY-ADVANCED:INTERNAL=1
  3054. -//ADVANCED property for variable: QT_QTSCRIPT_LIBRARY_DEBUG
  3055. -QT_QTSCRIPT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3056. -//ADVANCED property for variable: QT_QTSCRIPT_LIBRARY_RELEASE
  3057. -QT_QTSCRIPT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3058. -//ADVANCED property for variable: QT_QTSQL_INCLUDE_DIR
  3059. -QT_QTSQL_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3060. -//ADVANCED property for variable: QT_QTSQL_LIBRARY
  3061. -QT_QTSQL_LIBRARY-ADVANCED:INTERNAL=1
  3062. -//ADVANCED property for variable: QT_QTSQL_LIBRARY_DEBUG
  3063. -QT_QTSQL_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3064. -//ADVANCED property for variable: QT_QTSQL_LIBRARY_RELEASE
  3065. -QT_QTSQL_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3066. -//ADVANCED property for variable: QT_QTSVG_INCLUDE_DIR
  3067. -QT_QTSVG_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3068. -//ADVANCED property for variable: QT_QTSVG_LIBRARY
  3069. -QT_QTSVG_LIBRARY-ADVANCED:INTERNAL=1
  3070. -//ADVANCED property for variable: QT_QTSVG_LIBRARY_DEBUG
  3071. -QT_QTSVG_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3072. -//ADVANCED property for variable: QT_QTSVG_LIBRARY_RELEASE
  3073. -QT_QTSVG_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3074. -//ADVANCED property for variable: QT_QTTEST_INCLUDE_DIR
  3075. -QT_QTTEST_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3076. -//ADVANCED property for variable: QT_QTTEST_LIBRARY
  3077. -QT_QTTEST_LIBRARY-ADVANCED:INTERNAL=1
  3078. -//ADVANCED property for variable: QT_QTTEST_LIBRARY_DEBUG
  3079. -QT_QTTEST_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3080. -//ADVANCED property for variable: QT_QTTEST_LIBRARY_RELEASE
  3081. -QT_QTTEST_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3082. -//ADVANCED property for variable: QT_QTUITOOLS_INCLUDE_DIR
  3083. -QT_QTUITOOLS_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3084. -//ADVANCED property for variable: QT_QTUITOOLS_LIBRARY
  3085. -QT_QTUITOOLS_LIBRARY-ADVANCED:INTERNAL=1
  3086. -//ADVANCED property for variable: QT_QTUITOOLS_LIBRARY_DEBUG
  3087. -QT_QTUITOOLS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3088. -//ADVANCED property for variable: QT_QTUITOOLS_LIBRARY_RELEASE
  3089. -QT_QTUITOOLS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3090. -//ADVANCED property for variable: QT_QTWCODECS_PLUGIN_DEBUG
  3091. -QT_QTWCODECS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  3092. -//ADVANCED property for variable: QT_QTWCODECS_PLUGIN_RELEASE
  3093. -QT_QTWCODECS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  3094. -//ADVANCED property for variable: QT_QTWEBKIT_INCLUDE_DIR
  3095. -QT_QTWEBKIT_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3096. -//ADVANCED property for variable: QT_QTWEBKIT_LIBRARY
  3097. -QT_QTWEBKIT_LIBRARY-ADVANCED:INTERNAL=1
  3098. -//ADVANCED property for variable: QT_QTWEBKIT_LIBRARY_DEBUG
  3099. -QT_QTWEBKIT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3100. -//ADVANCED property for variable: QT_QTWEBKIT_LIBRARY_RELEASE
  3101. -QT_QTWEBKIT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3102. -//ADVANCED property for variable: QT_QTXMLPATTERNS_INCLUDE_DIR
  3103. -QT_QTXMLPATTERNS_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3104. -//ADVANCED property for variable: QT_QTXMLPATTERNS_LIBRARY
  3105. -QT_QTXMLPATTERNS_LIBRARY-ADVANCED:INTERNAL=1
  3106. -//ADVANCED property for variable: QT_QTXMLPATTERNS_LIBRARY_DEBUG
  3107. -QT_QTXMLPATTERNS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3108. -//ADVANCED property for variable: QT_QTXMLPATTERNS_LIBRARY_RELEASE
  3109. -QT_QTXMLPATTERNS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3110. -//ADVANCED property for variable: QT_QTXML_INCLUDE_DIR
  3111. -QT_QTXML_INCLUDE_DIR-ADVANCED:INTERNAL=1
  3112. -//ADVANCED property for variable: QT_QTXML_LIBRARY
  3113. -QT_QTXML_LIBRARY-ADVANCED:INTERNAL=1
  3114. -//ADVANCED property for variable: QT_QTXML_LIBRARY_DEBUG
  3115. -QT_QTXML_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  3116. -//ADVANCED property for variable: QT_QTXML_LIBRARY_RELEASE
  3117. -QT_QTXML_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  3118. -//ADVANCED property for variable: QT_QWEBVIEW_PLUGIN_DEBUG
  3119. -QT_QWEBVIEW_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  3120. -//ADVANCED property for variable: QT_QWEBVIEW_PLUGIN_RELEASE
  3121. -QT_QWEBVIEW_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  3122. -//ADVANCED property for variable: QT_QWSTSLIBMOUSEHANDLER_PLUGIN_DEBUG
  3123. -QT_QWSTSLIBMOUSEHANDLER_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  3124. -//ADVANCED property for variable: QT_QWSTSLIBMOUSEHANDLER_PLUGIN_RELEASE
  3125. -QT_QWSTSLIBMOUSEHANDLER_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  3126. -//ADVANCED property for variable: QT_RCC_EXECUTABLE
  3127. -QT_RCC_EXECUTABLE-ADVANCED:INTERNAL=1
  3128. -//ADVANCED property for variable: QT_TASKMENUEXTENSION_PLUGIN_DEBUG
  3129. -QT_TASKMENUEXTENSION_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  3130. -//ADVANCED property for variable: QT_TASKMENUEXTENSION_PLUGIN_RELEASE
  3131. -QT_TASKMENUEXTENSION_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  3132. -//ADVANCED property for variable: QT_TRANSLATIONS_DIR
  3133. -QT_TRANSLATIONS_DIR-ADVANCED:INTERNAL=1
  3134. -//ADVANCED property for variable: QT_UIC3_EXECUTABLE
  3135. -QT_UIC3_EXECUTABLE-ADVANCED:INTERNAL=1
  3136. -//ADVANCED property for variable: QT_UIC_EXECUTABLE
  3137. -QT_UIC_EXECUTABLE-ADVANCED:INTERNAL=1
  3138. -//ADVANCED property for variable: QT_WORLDTIMECLOCKPLUGIN_PLUGIN_DEBUG
  3139. -QT_WORLDTIMECLOCKPLUGIN_PLUGIN_DEBUG-ADVANCED:INTERNAL=1
  3140. -//ADVANCED property for variable: QT_WORLDTIMECLOCKPLUGIN_PLUGIN_RELEASE
  3141. -QT_WORLDTIMECLOCKPLUGIN_PLUGIN_RELEASE-ADVANCED:INTERNAL=1
  3142. -//Have symbol Q_WS_MAC
  3143. -Q_WS_MAC:INTERNAL=
  3144. -//Have symbol Q_WS_QWS
  3145. -Q_WS_QWS:INTERNAL=
  3146. -//Have symbol Q_WS_WIN
  3147. -Q_WS_WIN:INTERNAL=
  3148. -//Have symbol Q_WS_X11
  3149. -Q_WS_X11:INTERNAL=1
  3150. -//Test _OFFT_IS_64BIT
  3151. -_OFFT_IS_64BIT:INTERNAL=
  3152. -__pkg_config_checked_CHEMICAL_MIME_DATA:INTERNAL=1
  3153. -__pkg_config_checked_PC_OPENBABEL2:INTERNAL=1
  3154. -
  3155. diff --git a/makefile2/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake b/makefile2/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake
  3156. deleted file mode 100644
  3157. index 13f09a94f39156ec2bd07e74ea0aadb859815256..0000000000000000000000000000000000000000
  3158. --- a/makefile2/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake
  3159. +++ /dev/null
  3160. @@ -1,56 +0,0 @@
  3161. -set(CMAKE_C_COMPILER "/usr/bin/cc")
  3162. -set(CMAKE_C_COMPILER_ARG1 "")
  3163. -set(CMAKE_C_COMPILER_ID "GNU")
  3164. -set(CMAKE_C_COMPILER_VERSION "4.9.1")
  3165. -set(CMAKE_C_PLATFORM_ID "Linux")
  3166. -
  3167. -set(CMAKE_AR "/usr/bin/ar")
  3168. -set(CMAKE_RANLIB "/usr/bin/ranlib")
  3169. -set(CMAKE_LINKER "/usr/bin/ld")
  3170. -set(CMAKE_COMPILER_IS_GNUCC 1)
  3171. -set(CMAKE_C_COMPILER_LOADED 1)
  3172. -set(CMAKE_C_COMPILER_WORKS TRUE)
  3173. -set(CMAKE_C_ABI_COMPILED TRUE)
  3174. -set(CMAKE_COMPILER_IS_MINGW )
  3175. -set(CMAKE_COMPILER_IS_CYGWIN )
  3176. -if(CMAKE_COMPILER_IS_CYGWIN)
  3177. -  set(CYGWIN 1)
  3178. -  set(UNIX 1)
  3179. -endif()
  3180. -
  3181. -set(CMAKE_C_COMPILER_ENV_VAR "CC")
  3182. -
  3183. -if(CMAKE_COMPILER_IS_MINGW)
  3184. -  set(MINGW 1)
  3185. -endif()
  3186. -set(CMAKE_C_COMPILER_ID_RUN 1)
  3187. -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c)
  3188. -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
  3189. -set(CMAKE_C_LINKER_PREFERENCE 10)
  3190. -
  3191. -# Save compiler ABI information.
  3192. -set(CMAKE_C_SIZEOF_DATA_PTR "4")
  3193. -set(CMAKE_C_COMPILER_ABI "ELF")
  3194. -set(CMAKE_C_LIBRARY_ARCHITECTURE "i386-linux-gnu")
  3195. -
  3196. -if(CMAKE_C_SIZEOF_DATA_PTR)
  3197. -  set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
  3198. -endif()
  3199. -
  3200. -if(CMAKE_C_COMPILER_ABI)
  3201. -  set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
  3202. -endif()
  3203. -
  3204. -if(CMAKE_C_LIBRARY_ARCHITECTURE)
  3205. -  set(CMAKE_LIBRARY_ARCHITECTURE "i386-linux-gnu")
  3206. -endif()
  3207. -
  3208. -
  3209. -
  3210. -
  3211. -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "c")
  3212. -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/i686-linux-gnu/4.9;/usr/lib/i386-linux-gnu;/usr/lib;/lib/i386-linux-gnu;/lib")
  3213. -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
  3214. -
  3215. -
  3216. -
  3217. diff --git a/makefile2/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake b/makefile2/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake
  3218. deleted file mode 100644
  3219. index 13619d18c7fff76225f052a09c8da6ed929941ef..0000000000000000000000000000000000000000
  3220. --- a/makefile2/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake
  3221. +++ /dev/null
  3222. @@ -1,57 +0,0 @@
  3223. -set(CMAKE_CXX_COMPILER "/usr/bin/c++")
  3224. -set(CMAKE_CXX_COMPILER_ARG1 "")
  3225. -set(CMAKE_CXX_COMPILER_ID "GNU")
  3226. -set(CMAKE_CXX_COMPILER_VERSION "4.9.1")
  3227. -set(CMAKE_CXX_PLATFORM_ID "Linux")
  3228. -
  3229. -set(CMAKE_AR "/usr/bin/ar")
  3230. -set(CMAKE_RANLIB "/usr/bin/ranlib")
  3231. -set(CMAKE_LINKER "/usr/bin/ld")
  3232. -set(CMAKE_COMPILER_IS_GNUCXX 1)
  3233. -set(CMAKE_CXX_COMPILER_LOADED 1)
  3234. -set(CMAKE_CXX_COMPILER_WORKS TRUE)
  3235. -set(CMAKE_CXX_ABI_COMPILED TRUE)
  3236. -set(CMAKE_COMPILER_IS_MINGW )
  3237. -set(CMAKE_COMPILER_IS_CYGWIN )
  3238. -if(CMAKE_COMPILER_IS_CYGWIN)
  3239. -  set(CYGWIN 1)
  3240. -  set(UNIX 1)
  3241. -endif()
  3242. -
  3243. -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
  3244. -
  3245. -if(CMAKE_COMPILER_IS_MINGW)
  3246. -  set(MINGW 1)
  3247. -endif()
  3248. -set(CMAKE_CXX_COMPILER_ID_RUN 1)
  3249. -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
  3250. -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
  3251. -set(CMAKE_CXX_LINKER_PREFERENCE 30)
  3252. -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
  3253. -
  3254. -# Save compiler ABI information.
  3255. -set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
  3256. -set(CMAKE_CXX_COMPILER_ABI "ELF")
  3257. -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "i386-linux-gnu")
  3258. -
  3259. -if(CMAKE_CXX_SIZEOF_DATA_PTR)
  3260. -  set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
  3261. -endif()
  3262. -
  3263. -if(CMAKE_CXX_COMPILER_ABI)
  3264. -  set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
  3265. -endif()
  3266. -
  3267. -if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
  3268. -  set(CMAKE_LIBRARY_ARCHITECTURE "i386-linux-gnu")
  3269. -endif()
  3270. -
  3271. -
  3272. -
  3273. -
  3274. -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;c")
  3275. -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/i686-linux-gnu/4.9;/usr/lib/i386-linux-gnu;/usr/lib;/lib/i386-linux-gnu;/lib")
  3276. -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
  3277. -
  3278. -
  3279. -
  3280. diff --git a/makefile2/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin b/makefile2/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin
  3281. deleted file mode 100755
  3282. index f149003ee3fd19ee01c1fd9186eea609c5c3907d..0000000000000000000000000000000000000000
  3283. Binary files a/makefile2/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin and /dev/null differ
  3284. diff --git a/makefile2/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin b/makefile2/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin
  3285. deleted file mode 100755
  3286. index bbe8c33111aeae5b9bd525514c04c35894097dd0..0000000000000000000000000000000000000000
  3287. Binary files a/makefile2/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ
  3288. diff --git a/makefile2/CMakeFiles/2.8.12.2/CMakeSystem.cmake b/makefile2/CMakeFiles/2.8.12.2/CMakeSystem.cmake
  3289. deleted file mode 100644
  3290. index a133f1db57b9b2f87e8fb4624646857a33ab53f8..0000000000000000000000000000000000000000
  3291. --- a/makefile2/CMakeFiles/2.8.12.2/CMakeSystem.cmake
  3292. +++ /dev/null
  3293. @@ -1,15 +0,0 @@
  3294. -set(CMAKE_HOST_SYSTEM "Linux-3.16.0-23-generic")
  3295. -set(CMAKE_HOST_SYSTEM_NAME "Linux")
  3296. -set(CMAKE_HOST_SYSTEM_VERSION "3.16.0-23-generic")
  3297. -set(CMAKE_HOST_SYSTEM_PROCESSOR "i686")
  3298. -
  3299. -
  3300. -
  3301. -set(CMAKE_SYSTEM "Linux-3.16.0-23-generic")
  3302. -set(CMAKE_SYSTEM_NAME "Linux")
  3303. -set(CMAKE_SYSTEM_VERSION "3.16.0-23-generic")
  3304. -set(CMAKE_SYSTEM_PROCESSOR "i686")
  3305. -
  3306. -set(CMAKE_CROSSCOMPILING "FALSE")
  3307. -
  3308. -set(CMAKE_SYSTEM_LOADED 1)
  3309. diff --git a/makefile2/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c b/makefile2/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c
  3310. deleted file mode 100644
  3311. index cba81d4a6b5cc36ccdf8b4548036436087b6da7d..0000000000000000000000000000000000000000
  3312. --- a/makefile2/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c
  3313. +++ /dev/null
  3314. @@ -1,389 +0,0 @@
  3315. -#ifdef __cplusplus
  3316. -# error "A C++ compiler has been selected for C."
  3317. -#endif
  3318. -
  3319. -/* Version number components: V=Version, R=Revision, P=Patch
  3320. -   Version date components:   YYYY=Year, MM=Month,   DD=Day  */
  3321. -
  3322. -#if defined(__18CXX)
  3323. -# define ID_VOID_MAIN
  3324. -#endif
  3325. -
  3326. -#if defined(__INTEL_COMPILER) || defined(__ICC)
  3327. -# define COMPILER_ID "Intel"
  3328. -  /* __INTEL_COMPILER = VRP */
  3329. -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
  3330. -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
  3331. -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER    % 10)
  3332. -# if defined(__INTEL_COMPILER_BUILD_DATE)
  3333. -  /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
  3334. -#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
  3335. -# endif
  3336. -
  3337. -#elif defined(__PATHCC__)
  3338. -# define COMPILER_ID "PathScale"
  3339. -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
  3340. -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
  3341. -# if defined(__PATHCC_PATCHLEVEL__)
  3342. -#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
  3343. -# endif
  3344. -
  3345. -#elif defined(__clang__)
  3346. -# define COMPILER_ID "Clang"
  3347. -# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
  3348. -# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
  3349. -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
  3350. -
  3351. -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
  3352. -# define COMPILER_ID "Embarcadero"
  3353. -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
  3354. -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
  3355. -# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__     & 0xFFFF)
  3356. -
  3357. -#elif defined(__BORLANDC__)
  3358. -# define COMPILER_ID "Borland"
  3359. -  /* __BORLANDC__ = 0xVRR */
  3360. -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
  3361. -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
  3362. -
  3363. -#elif defined(__WATCOMC__)
  3364. -# define COMPILER_ID "Watcom"
  3365. -  /* __WATCOMC__ = VVRR */
  3366. -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
  3367. -# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100)
  3368. -
  3369. -#elif defined(__SUNPRO_C)
  3370. -# define COMPILER_ID "SunPro"
  3371. -# if __SUNPRO_C >= 0x5100
  3372. -   /* __SUNPRO_C = 0xVRRP */
  3373. -#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
  3374. -#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
  3375. -#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)
  3376. -# else
  3377. -   /* __SUNPRO_C = 0xVRP */
  3378. -#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
  3379. -#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
  3380. -#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)
  3381. -# endif
  3382. -
  3383. -#elif defined(__HP_cc)
  3384. -# define COMPILER_ID "HP"
  3385. -  /* __HP_cc = VVRRPP */
  3386. -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
  3387. -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
  3388. -# define COMPILER_VERSION_PATCH DEC(__HP_cc     % 100)
  3389. -
  3390. -#elif defined(__DECC)
  3391. -# define COMPILER_ID "Compaq"
  3392. -  /* __DECC_VER = VVRRTPPPP */
  3393. -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
  3394. -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000  % 100)
  3395. -# define COMPILER_VERSION_PATCH DEC(__DECC_VER         % 10000)
  3396. -
  3397. -#elif defined(__IBMC__)
  3398. -# if defined(__COMPILER_VER__)
  3399. -#  define COMPILER_ID "zOS"
  3400. -# else
  3401. -#  if __IBMC__ >= 800
  3402. -#   define COMPILER_ID "XL"
  3403. -#  else
  3404. -#   define COMPILER_ID "VisualAge"
  3405. -#  endif
  3406. -   /* __IBMC__ = VRP */
  3407. -#  define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
  3408. -#  define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
  3409. -#  define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)
  3410. -# endif
  3411. -
  3412. -#elif defined(__PGI)
  3413. -# define COMPILER_ID "PGI"
  3414. -# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
  3415. -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
  3416. -# if defined(__PGIC_PATCHLEVEL__)
  3417. -#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
  3418. -# endif
  3419. -
  3420. -#elif defined(_CRAYC)
  3421. -# define COMPILER_ID "Cray"
  3422. -# define COMPILER_VERSION_MAJOR DEC(_RELEASE)
  3423. -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
  3424. -
  3425. -#elif defined(__TI_COMPILER_VERSION__)
  3426. -# define COMPILER_ID "TI"
  3427. -  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
  3428. -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
  3429. -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)
  3430. -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)
  3431. -
  3432. -#elif defined(__TINYC__)
  3433. -# define COMPILER_ID "TinyCC"
  3434. -
  3435. -#elif defined(__SCO_VERSION__)
  3436. -# define COMPILER_ID "SCO"
  3437. -
  3438. -#elif defined(__GNUC__)
  3439. -# define COMPILER_ID "GNU"
  3440. -# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
  3441. -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
  3442. -# if defined(__GNUC_PATCHLEVEL__)
  3443. -#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
  3444. -# endif
  3445. -
  3446. -#elif defined(_MSC_VER)
  3447. -# define COMPILER_ID "MSVC"
  3448. -  /* _MSC_VER = VVRR */
  3449. -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
  3450. -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
  3451. -# if defined(_MSC_FULL_VER)
  3452. -#  if _MSC_VER >= 1400
  3453. -    /* _MSC_FULL_VER = VVRRPPPPP */
  3454. -#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
  3455. -#  else
  3456. -    /* _MSC_FULL_VER = VVRRPPPP */
  3457. -#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
  3458. -#  endif
  3459. -# endif
  3460. -# if defined(_MSC_BUILD)
  3461. -#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
  3462. -# endif
  3463. -
  3464. -/* Analog VisualDSP++ >= 4.5.6 */
  3465. -#elif defined(__VISUALDSPVERSION__)
  3466. -# define COMPILER_ID "ADSP"
  3467. -  /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
  3468. -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
  3469. -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
  3470. -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8  & 0xFF)
  3471. -
  3472. -/* Analog VisualDSP++ < 4.5.6 */
  3473. -#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
  3474. -# define COMPILER_ID "ADSP"
  3475. -
  3476. -/* IAR Systems compiler for embedded systems.
  3477. -   http://www.iar.com */
  3478. -#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC)
  3479. -# define COMPILER_ID "IAR"
  3480. -
  3481. -/* sdcc, the small devices C compiler for embedded systems,
  3482. -   http://sdcc.sourceforge.net  */
  3483. -#elif defined(SDCC)
  3484. -# define COMPILER_ID "SDCC"
  3485. -  /* SDCC = VRP */
  3486. -#  define COMPILER_VERSION_MAJOR DEC(SDCC/100)
  3487. -#  define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
  3488. -#  define COMPILER_VERSION_PATCH DEC(SDCC    % 10)
  3489. -
  3490. -#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
  3491. -# define COMPILER_ID "MIPSpro"
  3492. -# if defined(_SGI_COMPILER_VERSION)
  3493. -  /* _SGI_COMPILER_VERSION = VRP */
  3494. -#  define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
  3495. -#  define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
  3496. -#  define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION    % 10)
  3497. -# else
  3498. -  /* _COMPILER_VERSION = VRP */
  3499. -#  define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
  3500. -#  define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
  3501. -#  define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION    % 10)
  3502. -# endif
  3503. -
  3504. -/* This compiler is either not known or is too old to define an
  3505. -   identification macro.  Try to identify the platform and guess that
  3506. -   it is the native compiler.  */
  3507. -#elif defined(__sgi)
  3508. -# define COMPILER_ID "MIPSpro"
  3509. -
  3510. -#elif defined(__hpux) || defined(__hpua)
  3511. -# define COMPILER_ID "HP"
  3512. -
  3513. -#else /* unknown compiler */
  3514. -# define COMPILER_ID ""
  3515. -
  3516. -#endif
  3517. -
  3518. -/* Construct the string literal in pieces to prevent the source from
  3519. -   getting matched.  Store it in a pointer rather than an array
  3520. -   because some compilers will just produce instructions to fill the
  3521. -   array rather than assigning a pointer to a static array.  */
  3522. -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
  3523. -
  3524. -/* Identify known platforms by name.  */
  3525. -#if defined(__linux) || defined(__linux__) || defined(linux)
  3526. -# define PLATFORM_ID "Linux"
  3527. -
  3528. -#elif defined(__CYGWIN__)
  3529. -# define PLATFORM_ID "Cygwin"
  3530. -
  3531. -#elif defined(__MINGW32__)
  3532. -# define PLATFORM_ID "MinGW"
  3533. -
  3534. -#elif defined(__APPLE__)
  3535. -# define PLATFORM_ID "Darwin"
  3536. -
  3537. -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
  3538. -# define PLATFORM_ID "Windows"
  3539. -
  3540. -#elif defined(__FreeBSD__) || defined(__FreeBSD)
  3541. -# define PLATFORM_ID "FreeBSD"
  3542. -
  3543. -#elif defined(__NetBSD__) || defined(__NetBSD)
  3544. -# define PLATFORM_ID "NetBSD"
  3545. -
  3546. -#elif defined(__OpenBSD__) || defined(__OPENBSD)
  3547. -# define PLATFORM_ID "OpenBSD"
  3548. -
  3549. -#elif defined(__sun) || defined(sun)
  3550. -# define PLATFORM_ID "SunOS"
  3551. -
  3552. -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
  3553. -# define PLATFORM_ID "AIX"
  3554. -
  3555. -#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
  3556. -# define PLATFORM_ID "IRIX"
  3557. -
  3558. -#elif defined(__hpux) || defined(__hpux__)
  3559. -# define PLATFORM_ID "HP-UX"
  3560. -
  3561. -#elif defined(__HAIKU__)
  3562. -# define PLATFORM_ID "Haiku"
  3563. -
  3564. -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
  3565. -# define PLATFORM_ID "BeOS"
  3566. -
  3567. -#elif defined(__QNX__) || defined(__QNXNTO__)
  3568. -# define PLATFORM_ID "QNX"
  3569. -
  3570. -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
  3571. -# define PLATFORM_ID "Tru64"
  3572. -
  3573. -#elif defined(__riscos) || defined(__riscos__)
  3574. -# define PLATFORM_ID "RISCos"
  3575. -
  3576. -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
  3577. -# define PLATFORM_ID "SINIX"
  3578. -
  3579. -#elif defined(__UNIX_SV__)
  3580. -# define PLATFORM_ID "UNIX_SV"
  3581. -
  3582. -#elif defined(__bsdos__)
  3583. -# define PLATFORM_ID "BSDOS"
  3584. -
  3585. -#elif defined(_MPRAS) || defined(MPRAS)
  3586. -# define PLATFORM_ID "MP-RAS"
  3587. -
  3588. -#elif defined(__osf) || defined(__osf__)
  3589. -# define PLATFORM_ID "OSF1"
  3590. -
  3591. -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
  3592. -# define PLATFORM_ID "SCO_SV"
  3593. -
  3594. -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
  3595. -# define PLATFORM_ID "ULTRIX"
  3596. -
  3597. -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
  3598. -# define PLATFORM_ID "Xenix"
  3599. -
  3600. -#else /* unknown platform */
  3601. -# define PLATFORM_ID ""
  3602. -
  3603. -#endif
  3604. -
  3605. -/* For windows compilers MSVC and Intel we can determine
  3606. -   the architecture of the compiler being used.  This is because
  3607. -   the compilers do not have flags that can change the architecture,
  3608. -   but rather depend on which compiler is being used
  3609. -*/
  3610. -#if defined(_WIN32) && defined(_MSC_VER)
  3611. -# if defined(_M_IA64)
  3612. -#  define ARCHITECTURE_ID "IA64"
  3613. -
  3614. -# elif defined(_M_X64) || defined(_M_AMD64)
  3615. -#  define ARCHITECTURE_ID "x64"
  3616. -
  3617. -# elif defined(_M_IX86)
  3618. -#  define ARCHITECTURE_ID "X86"
  3619. -
  3620. -# elif defined(_M_ARM)
  3621. -#  define ARCHITECTURE_ID "ARM"
  3622. -
  3623. -# elif defined(_M_MIPS)
  3624. -#  define ARCHITECTURE_ID "MIPS"
  3625. -
  3626. -# elif defined(_M_SH)
  3627. -#  define ARCHITECTURE_ID "SHx"
  3628. -
  3629. -# else /* unknown architecture */
  3630. -#  define ARCHITECTURE_ID ""
  3631. -# endif
  3632. -
  3633. -#else
  3634. -#  define ARCHITECTURE_ID ""
  3635. -#endif
  3636. -
  3637. -/* Convert integer to decimal digit literals.  */
  3638. -#define DEC(n)                   \
  3639. -  ('0' + (((n) / 10000000)%10)), \
  3640. -  ('0' + (((n) / 1000000)%10)),  \
  3641. -  ('0' + (((n) / 100000)%10)),   \
  3642. -  ('0' + (((n) / 10000)%10)),    \
  3643. -  ('0' + (((n) / 1000)%10)),     \
  3644. -  ('0' + (((n) / 100)%10)),      \
  3645. -  ('0' + (((n) / 10)%10)),       \
  3646. -  ('0' +  ((n) % 10))
  3647. -
  3648. -/* Convert integer to hex digit literals.  */
  3649. -#define HEX(n)             \
  3650. -  ('0' + ((n)>>28 & 0xF)), \
  3651. -  ('0' + ((n)>>24 & 0xF)), \
  3652. -  ('0' + ((n)>>20 & 0xF)), \
  3653. -  ('0' + ((n)>>16 & 0xF)), \
  3654. -  ('0' + ((n)>>12 & 0xF)), \
  3655. -  ('0' + ((n)>>8  & 0xF)), \
  3656. -  ('0' + ((n)>>4  & 0xF)), \
  3657. -  ('0' + ((n)     & 0xF))
  3658. -
  3659. -/* Construct a string literal encoding the version number components. */
  3660. -#ifdef COMPILER_VERSION_MAJOR
  3661. -char const info_version[] = {
  3662. -  'I', 'N', 'F', 'O', ':',
  3663. -  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
  3664. -  COMPILER_VERSION_MAJOR,
  3665. -# ifdef COMPILER_VERSION_MINOR
  3666. -  '.', COMPILER_VERSION_MINOR,
  3667. -#  ifdef COMPILER_VERSION_PATCH
  3668. -   '.', COMPILER_VERSION_PATCH,
  3669. -#   ifdef COMPILER_VERSION_TWEAK
  3670. -    '.', COMPILER_VERSION_TWEAK,
  3671. -#   endif
  3672. -#  endif
  3673. -# endif
  3674. -  ']','\0'};
  3675. -#endif
  3676. -
  3677. -/* Construct the string literal in pieces to prevent the source from
  3678. -   getting matched.  Store it in a pointer rather than an array
  3679. -   because some compilers will just produce instructions to fill the
  3680. -   array rather than assigning a pointer to a static array.  */
  3681. -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
  3682. -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
  3683. -
  3684. -
  3685. -
  3686. -/*--------------------------------------------------------------------------*/
  3687. -
  3688. -#ifdef ID_VOID_MAIN
  3689. -void main() {}
  3690. -#else
  3691. -int main(int argc, char* argv[])
  3692. -{
  3693. -  int require = 0;
  3694. -  require += info_compiler[argc];
  3695. -  require += info_platform[argc];
  3696. -  require += info_arch[argc];
  3697. -#ifdef COMPILER_VERSION_MAJOR
  3698. -  require += info_version[argc];
  3699. -#endif
  3700. -  (void)argv;
  3701. -  return require;
  3702. -}
  3703. -#endif
  3704. diff --git a/makefile2/CMakeFiles/2.8.12.2/CompilerIdC/a.out b/makefile2/CMakeFiles/2.8.12.2/CompilerIdC/a.out
  3705. deleted file mode 100755
  3706. index 4995439cf1fcf22600f17984e9936d8c229cb8a3..0000000000000000000000000000000000000000
  3707. Binary files a/makefile2/CMakeFiles/2.8.12.2/CompilerIdC/a.out and /dev/null differ
  3708. diff --git a/makefile2/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/makefile2/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
  3709. deleted file mode 100644
  3710. index e8220b26e508ad8289ae53743d2ffa316c17237f..0000000000000000000000000000000000000000
  3711. --- a/makefile2/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
  3712. +++ /dev/null
  3713. @@ -1,377 +0,0 @@
  3714. -/* This source file must have a .cpp extension so that all C++ compilers
  3715. -   recognize the extension without flags.  Borland does not know .cxx for
  3716. -   example.  */
  3717. -#ifndef __cplusplus
  3718. -# error "A C compiler has been selected for C++."
  3719. -#endif
  3720. -
  3721. -/* Version number components: V=Version, R=Revision, P=Patch
  3722. -   Version date components:   YYYY=Year, MM=Month,   DD=Day  */
  3723. -
  3724. -#if defined(__COMO__)
  3725. -# define COMPILER_ID "Comeau"
  3726. -  /* __COMO_VERSION__ = VRR */
  3727. -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
  3728. -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
  3729. -
  3730. -#elif defined(__INTEL_COMPILER) || defined(__ICC)
  3731. -# define COMPILER_ID "Intel"
  3732. -  /* __INTEL_COMPILER = VRP */
  3733. -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
  3734. -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
  3735. -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER    % 10)
  3736. -# if defined(__INTEL_COMPILER_BUILD_DATE)
  3737. -  /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
  3738. -#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
  3739. -# endif
  3740. -
  3741. -#elif defined(__PATHCC__)
  3742. -# define COMPILER_ID "PathScale"
  3743. -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
  3744. -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
  3745. -# if defined(__PATHCC_PATCHLEVEL__)
  3746. -#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
  3747. -# endif
  3748. -
  3749. -#elif defined(__clang__)
  3750. -# define COMPILER_ID "Clang"
  3751. -# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
  3752. -# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
  3753. -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
  3754. -
  3755. -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
  3756. -# define COMPILER_ID "Embarcadero"
  3757. -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
  3758. -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
  3759. -# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__     & 0xFFFF)
  3760. -
  3761. -#elif defined(__BORLANDC__)
  3762. -# define COMPILER_ID "Borland"
  3763. -  /* __BORLANDC__ = 0xVRR */
  3764. -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
  3765. -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
  3766. -
  3767. -#elif defined(__WATCOMC__)
  3768. -# define COMPILER_ID "Watcom"
  3769. -  /* __WATCOMC__ = VVRR */
  3770. -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
  3771. -# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100)
  3772. -
  3773. -#elif defined(__SUNPRO_CC)
  3774. -# define COMPILER_ID "SunPro"
  3775. -# if __SUNPRO_CC >= 0x5100
  3776. -   /* __SUNPRO_CC = 0xVRRP */
  3777. -#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
  3778. -#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
  3779. -#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)
  3780. -# else
  3781. -   /* __SUNPRO_CC = 0xVRP */
  3782. -#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
  3783. -#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
  3784. -#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)
  3785. -# endif
  3786. -
  3787. -#elif defined(__HP_aCC)
  3788. -# define COMPILER_ID "HP"
  3789. -  /* __HP_aCC = VVRRPP */
  3790. -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
  3791. -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
  3792. -# define COMPILER_VERSION_PATCH DEC(__HP_aCC     % 100)
  3793. -
  3794. -#elif defined(__DECCXX)
  3795. -# define COMPILER_ID "Compaq"
  3796. -  /* __DECCXX_VER = VVRRTPPPP */
  3797. -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
  3798. -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000  % 100)
  3799. -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER         % 10000)
  3800. -
  3801. -#elif defined(__IBMCPP__)
  3802. -# if defined(__COMPILER_VER__)
  3803. -#  define COMPILER_ID "zOS"
  3804. -# else
  3805. -#  if __IBMCPP__ >= 800
  3806. -#   define COMPILER_ID "XL"
  3807. -#  else
  3808. -#   define COMPILER_ID "VisualAge"
  3809. -#  endif
  3810. -   /* __IBMCPP__ = VRP */
  3811. -#  define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
  3812. -#  define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
  3813. -#  define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)
  3814. -# endif
  3815. -
  3816. -#elif defined(__PGI)
  3817. -# define COMPILER_ID "PGI"
  3818. -# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
  3819. -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
  3820. -# if defined(__PGIC_PATCHLEVEL__)
  3821. -#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
  3822. -# endif
  3823. -
  3824. -#elif defined(_CRAYC)
  3825. -# define COMPILER_ID "Cray"
  3826. -# define COMPILER_VERSION_MAJOR DEC(_RELEASE)
  3827. -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
  3828. -
  3829. -#elif defined(__TI_COMPILER_VERSION__)
  3830. -# define COMPILER_ID "TI"
  3831. -  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
  3832. -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
  3833. -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)
  3834. -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)
  3835. -
  3836. -#elif defined(__SCO_VERSION__)
  3837. -# define COMPILER_ID "SCO"
  3838. -
  3839. -#elif defined(__GNUC__)
  3840. -# define COMPILER_ID "GNU"
  3841. -# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
  3842. -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
  3843. -# if defined(__GNUC_PATCHLEVEL__)
  3844. -#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
  3845. -# endif
  3846. -
  3847. -#elif defined(_MSC_VER)
  3848. -# define COMPILER_ID "MSVC"
  3849. -  /* _MSC_VER = VVRR */
  3850. -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
  3851. -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
  3852. -# if defined(_MSC_FULL_VER)
  3853. -#  if _MSC_VER >= 1400
  3854. -    /* _MSC_FULL_VER = VVRRPPPPP */
  3855. -#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
  3856. -#  else
  3857. -    /* _MSC_FULL_VER = VVRRPPPP */
  3858. -#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
  3859. -#  endif
  3860. -# endif
  3861. -# if defined(_MSC_BUILD)
  3862. -#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
  3863. -# endif
  3864. -
  3865. -/* Analog VisualDSP++ >= 4.5.6 */
  3866. -#elif defined(__VISUALDSPVERSION__)
  3867. -# define COMPILER_ID "ADSP"
  3868. -  /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
  3869. -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
  3870. -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
  3871. -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8  & 0xFF)
  3872. -
  3873. -/* Analog VisualDSP++ < 4.5.6 */
  3874. -#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
  3875. -# define COMPILER_ID "ADSP"
  3876. -
  3877. -/* IAR Systems compiler for embedded systems.
  3878. -   http://www.iar.com */
  3879. -#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC)
  3880. -# define COMPILER_ID "IAR"
  3881. -
  3882. -#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
  3883. -# define COMPILER_ID "MIPSpro"
  3884. -# if defined(_SGI_COMPILER_VERSION)
  3885. -  /* _SGI_COMPILER_VERSION = VRP */
  3886. -#  define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
  3887. -#  define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
  3888. -#  define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION    % 10)
  3889. -# else
  3890. -  /* _COMPILER_VERSION = VRP */
  3891. -#  define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
  3892. -#  define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
  3893. -#  define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION    % 10)
  3894. -# endif
  3895. -
  3896. -/* This compiler is either not known or is too old to define an
  3897. -   identification macro.  Try to identify the platform and guess that
  3898. -   it is the native compiler.  */
  3899. -#elif defined(__sgi)
  3900. -# define COMPILER_ID "MIPSpro"
  3901. -
  3902. -#elif defined(__hpux) || defined(__hpua)
  3903. -# define COMPILER_ID "HP"
  3904. -
  3905. -#else /* unknown compiler */
  3906. -# define COMPILER_ID ""
  3907. -
  3908. -#endif
  3909. -
  3910. -/* Construct the string literal in pieces to prevent the source from
  3911. -   getting matched.  Store it in a pointer rather than an array
  3912. -   because some compilers will just produce instructions to fill the
  3913. -   array rather than assigning a pointer to a static array.  */
  3914. -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
  3915. -
  3916. -/* Identify known platforms by name.  */
  3917. -#if defined(__linux) || defined(__linux__) || defined(linux)
  3918. -# define PLATFORM_ID "Linux"
  3919. -
  3920. -#elif defined(__CYGWIN__)
  3921. -# define PLATFORM_ID "Cygwin"
  3922. -
  3923. -#elif defined(__MINGW32__)
  3924. -# define PLATFORM_ID "MinGW"
  3925. -
  3926. -#elif defined(__APPLE__)
  3927. -# define PLATFORM_ID "Darwin"
  3928. -
  3929. -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
  3930. -# define PLATFORM_ID "Windows"
  3931. -
  3932. -#elif defined(__FreeBSD__) || defined(__FreeBSD)
  3933. -# define PLATFORM_ID "FreeBSD"
  3934. -
  3935. -#elif defined(__NetBSD__) || defined(__NetBSD)
  3936. -# define PLATFORM_ID "NetBSD"
  3937. -
  3938. -#elif defined(__OpenBSD__) || defined(__OPENBSD)
  3939. -# define PLATFORM_ID "OpenBSD"
  3940. -
  3941. -#elif defined(__sun) || defined(sun)
  3942. -# define PLATFORM_ID "SunOS"
  3943. -
  3944. -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
  3945. -# define PLATFORM_ID "AIX"
  3946. -
  3947. -#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
  3948. -# define PLATFORM_ID "IRIX"
  3949. -
  3950. -#elif defined(__hpux) || defined(__hpux__)
  3951. -# define PLATFORM_ID "HP-UX"
  3952. -
  3953. -#elif defined(__HAIKU__)
  3954. -# define PLATFORM_ID "Haiku"
  3955. -
  3956. -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
  3957. -# define PLATFORM_ID "BeOS"
  3958. -
  3959. -#elif defined(__QNX__) || defined(__QNXNTO__)
  3960. -# define PLATFORM_ID "QNX"
  3961. -
  3962. -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
  3963. -# define PLATFORM_ID "Tru64"
  3964. -
  3965. -#elif defined(__riscos) || defined(__riscos__)
  3966. -# define PLATFORM_ID "RISCos"
  3967. -
  3968. -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
  3969. -# define PLATFORM_ID "SINIX"
  3970. -
  3971. -#elif defined(__UNIX_SV__)
  3972. -# define PLATFORM_ID "UNIX_SV"
  3973. -
  3974. -#elif defined(__bsdos__)
  3975. -# define PLATFORM_ID "BSDOS"
  3976. -
  3977. -#elif defined(_MPRAS) || defined(MPRAS)
  3978. -# define PLATFORM_ID "MP-RAS"
  3979. -
  3980. -#elif defined(__osf) || defined(__osf__)
  3981. -# define PLATFORM_ID "OSF1"
  3982. -
  3983. -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
  3984. -# define PLATFORM_ID "SCO_SV"
  3985. -
  3986. -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
  3987. -# define PLATFORM_ID "ULTRIX"
  3988. -
  3989. -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
  3990. -# define PLATFORM_ID "Xenix"
  3991. -
  3992. -#else /* unknown platform */
  3993. -# define PLATFORM_ID ""
  3994. -
  3995. -#endif
  3996. -
  3997. -/* For windows compilers MSVC and Intel we can determine
  3998. -   the architecture of the compiler being used.  This is because
  3999. -   the compilers do not have flags that can change the architecture,
  4000. -   but rather depend on which compiler is being used
  4001. -*/
  4002. -#if defined(_WIN32) && defined(_MSC_VER)
  4003. -# if defined(_M_IA64)
  4004. -#  define ARCHITECTURE_ID "IA64"
  4005. -
  4006. -# elif defined(_M_X64) || defined(_M_AMD64)
  4007. -#  define ARCHITECTURE_ID "x64"
  4008. -
  4009. -# elif defined(_M_IX86)
  4010. -#  define ARCHITECTURE_ID "X86"
  4011. -
  4012. -# elif defined(_M_ARM)
  4013. -#  define ARCHITECTURE_ID "ARM"
  4014. -
  4015. -# elif defined(_M_MIPS)
  4016. -#  define ARCHITECTURE_ID "MIPS"
  4017. -
  4018. -# elif defined(_M_SH)
  4019. -#  define ARCHITECTURE_ID "SHx"
  4020. -
  4021. -# else /* unknown architecture */
  4022. -#  define ARCHITECTURE_ID ""
  4023. -# endif
  4024. -
  4025. -#else
  4026. -#  define ARCHITECTURE_ID ""
  4027. -#endif
  4028. -
  4029. -/* Convert integer to decimal digit literals.  */
  4030. -#define DEC(n)                   \
  4031. -  ('0' + (((n) / 10000000)%10)), \
  4032. -  ('0' + (((n) / 1000000)%10)),  \
  4033. -  ('0' + (((n) / 100000)%10)),   \
  4034. -  ('0' + (((n) / 10000)%10)),    \
  4035. -  ('0' + (((n) / 1000)%10)),     \
  4036. -  ('0' + (((n) / 100)%10)),      \
  4037. -  ('0' + (((n) / 10)%10)),       \
  4038. -  ('0' +  ((n) % 10))
  4039. -
  4040. -/* Convert integer to hex digit literals.  */
  4041. -#define HEX(n)             \
  4042. -  ('0' + ((n)>>28 & 0xF)), \
  4043. -  ('0' + ((n)>>24 & 0xF)), \
  4044. -  ('0' + ((n)>>20 & 0xF)), \
  4045. -  ('0' + ((n)>>16 & 0xF)), \
  4046. -  ('0' + ((n)>>12 & 0xF)), \
  4047. -  ('0' + ((n)>>8  & 0xF)), \
  4048. -  ('0' + ((n)>>4  & 0xF)), \
  4049. -  ('0' + ((n)     & 0xF))
  4050. -
  4051. -/* Construct a string literal encoding the version number components. */
  4052. -#ifdef COMPILER_VERSION_MAJOR
  4053. -char const info_version[] = {
  4054. -  'I', 'N', 'F', 'O', ':',
  4055. -  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
  4056. -  COMPILER_VERSION_MAJOR,
  4057. -# ifdef COMPILER_VERSION_MINOR
  4058. -  '.', COMPILER_VERSION_MINOR,
  4059. -#  ifdef COMPILER_VERSION_PATCH
  4060. -   '.', COMPILER_VERSION_PATCH,
  4061. -#   ifdef COMPILER_VERSION_TWEAK
  4062. -    '.', COMPILER_VERSION_TWEAK,
  4063. -#   endif
  4064. -#  endif
  4065. -# endif
  4066. -  ']','\0'};
  4067. -#endif
  4068. -
  4069. -/* Construct the string literal in pieces to prevent the source from
  4070. -   getting matched.  Store it in a pointer rather than an array
  4071. -   because some compilers will just produce instructions to fill the
  4072. -   array rather than assigning a pointer to a static array.  */
  4073. -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
  4074. -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
  4075. -
  4076. -
  4077. -
  4078. -/*--------------------------------------------------------------------------*/
  4079. -
  4080. -int main(int argc, char* argv[])
  4081. -{
  4082. -  int require = 0;
  4083. -  require += info_compiler[argc];
  4084. -  require += info_platform[argc];
  4085. -#ifdef COMPILER_VERSION_MAJOR
  4086. -  require += info_version[argc];
  4087. -#endif
  4088. -  (void)argv;
  4089. -  return require;
  4090. -}
  4091. diff --git a/makefile2/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out b/makefile2/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out
  4092. deleted file mode 100755
  4093. index 260cf2e3f903356964b5164f833a33f6ee589c78..0000000000000000000000000000000000000000
  4094. Binary files a/makefile2/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out and /dev/null differ
  4095. diff --git a/makefile2/CMakeFiles/3.0.0/CMakeCCompiler.cmake b/makefile2/CMakeFiles/3.0.0/CMakeCCompiler.cmake
  4096. deleted file mode 100644
  4097. index 108cb30a925acef58828a7c18831988bf86486b2..0000000000000000000000000000000000000000
  4098. --- a/makefile2/CMakeFiles/3.0.0/CMakeCCompiler.cmake
  4099. +++ /dev/null
  4100. @@ -1,58 +0,0 @@
  4101. -set(CMAKE_C_COMPILER "/usr/bin/cc")
  4102. -set(CMAKE_C_COMPILER_ARG1 "")
  4103. -set(CMAKE_C_COMPILER_ID "GNU")
  4104. -set(CMAKE_C_COMPILER_VERSION "4.9.1")
  4105. -set(CMAKE_C_PLATFORM_ID "Linux")
  4106. -set(CMAKE_C_SIMULATE_ID "")
  4107. -set(CMAKE_C_SIMULATE_VERSION "")
  4108. -
  4109. -set(CMAKE_AR "/usr/bin/ar")
  4110. -set(CMAKE_RANLIB "/usr/bin/ranlib")
  4111. -set(CMAKE_LINKER "/usr/bin/ld")
  4112. -set(CMAKE_COMPILER_IS_GNUCC 1)
  4113. -set(CMAKE_C_COMPILER_LOADED 1)
  4114. -set(CMAKE_C_COMPILER_WORKS TRUE)
  4115. -set(CMAKE_C_ABI_COMPILED TRUE)
  4116. -set(CMAKE_COMPILER_IS_MINGW )
  4117. -set(CMAKE_COMPILER_IS_CYGWIN )
  4118. -if(CMAKE_COMPILER_IS_CYGWIN)
  4119. -  set(CYGWIN 1)
  4120. -  set(UNIX 1)
  4121. -endif()
  4122. -
  4123. -set(CMAKE_C_COMPILER_ENV_VAR "CC")
  4124. -
  4125. -if(CMAKE_COMPILER_IS_MINGW)
  4126. -  set(MINGW 1)
  4127. -endif()
  4128. -set(CMAKE_C_COMPILER_ID_RUN 1)
  4129. -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c)
  4130. -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
  4131. -set(CMAKE_C_LINKER_PREFERENCE 10)
  4132. -
  4133. -# Save compiler ABI information.
  4134. -set(CMAKE_C_SIZEOF_DATA_PTR "4")
  4135. -set(CMAKE_C_COMPILER_ABI "ELF")
  4136. -set(CMAKE_C_LIBRARY_ARCHITECTURE "i386-linux-gnu")
  4137. -
  4138. -if(CMAKE_C_SIZEOF_DATA_PTR)
  4139. -  set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
  4140. -endif()
  4141. -
  4142. -if(CMAKE_C_COMPILER_ABI)
  4143. -  set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
  4144. -endif()
  4145. -
  4146. -if(CMAKE_C_LIBRARY_ARCHITECTURE)
  4147. -  set(CMAKE_LIBRARY_ARCHITECTURE "i386-linux-gnu")
  4148. -endif()
  4149. -
  4150. -
  4151. -
  4152. -
  4153. -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "c")
  4154. -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/i686-linux-gnu/4.9;/usr/lib/i386-linux-gnu;/usr/lib;/lib/i386-linux-gnu;/lib")
  4155. -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
  4156. -
  4157. -
  4158. -
  4159. diff --git a/makefile2/CMakeFiles/3.0.0/CMakeCXXCompiler.cmake b/makefile2/CMakeFiles/3.0.0/CMakeCXXCompiler.cmake
  4160. deleted file mode 100644
  4161. index a87112f8c3b22d4b41a734c6e8dd698efa757e69..0000000000000000000000000000000000000000
  4162. --- a/makefile2/CMakeFiles/3.0.0/CMakeCXXCompiler.cmake
  4163. +++ /dev/null
  4164. @@ -1,59 +0,0 @@
  4165. -set(CMAKE_CXX_COMPILER "/usr/bin/c++")
  4166. -set(CMAKE_CXX_COMPILER_ARG1 "")
  4167. -set(CMAKE_CXX_COMPILER_ID "GNU")
  4168. -set(CMAKE_CXX_COMPILER_VERSION "4.9.1")
  4169. -set(CMAKE_CXX_PLATFORM_ID "Linux")
  4170. -set(CMAKE_CXX_SIMULATE_ID "")
  4171. -set(CMAKE_CXX_SIMULATE_VERSION "")
  4172. -
  4173. -set(CMAKE_AR "/usr/bin/ar")
  4174. -set(CMAKE_RANLIB "/usr/bin/ranlib")
  4175. -set(CMAKE_LINKER "/usr/bin/ld")
  4176. -set(CMAKE_COMPILER_IS_GNUCXX 1)
  4177. -set(CMAKE_CXX_COMPILER_LOADED 1)
  4178. -set(CMAKE_CXX_COMPILER_WORKS TRUE)
  4179. -set(CMAKE_CXX_ABI_COMPILED TRUE)
  4180. -set(CMAKE_COMPILER_IS_MINGW )
  4181. -set(CMAKE_COMPILER_IS_CYGWIN )
  4182. -if(CMAKE_COMPILER_IS_CYGWIN)
  4183. -  set(CYGWIN 1)
  4184. -  set(UNIX 1)
  4185. -endif()
  4186. -
  4187. -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
  4188. -
  4189. -if(CMAKE_COMPILER_IS_MINGW)
  4190. -  set(MINGW 1)
  4191. -endif()
  4192. -set(CMAKE_CXX_COMPILER_ID_RUN 1)
  4193. -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
  4194. -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
  4195. -set(CMAKE_CXX_LINKER_PREFERENCE 30)
  4196. -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
  4197. -
  4198. -# Save compiler ABI information.
  4199. -set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
  4200. -set(CMAKE_CXX_COMPILER_ABI "ELF")
  4201. -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "i386-linux-gnu")
  4202. -
  4203. -if(CMAKE_CXX_SIZEOF_DATA_PTR)
  4204. -  set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
  4205. -endif()
  4206. -
  4207. -if(CMAKE_CXX_COMPILER_ABI)
  4208. -  set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
  4209. -endif()
  4210. -
  4211. -if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
  4212. -  set(CMAKE_LIBRARY_ARCHITECTURE "i386-linux-gnu")
  4213. -endif()
  4214. -
  4215. -
  4216. -
  4217. -
  4218. -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;c")
  4219. -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/i686-linux-gnu/4.9;/usr/lib/i386-linux-gnu;/usr/lib;/lib/i386-linux-gnu;/lib")
  4220. -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
  4221. -
  4222. -
  4223. -
  4224. diff --git a/makefile2/CMakeFiles/3.0.0/CMakeDetermineCompilerABI_C.bin b/makefile2/CMakeFiles/3.0.0/CMakeDetermineCompilerABI_C.bin
  4225. deleted file mode 100644
  4226. index f149003ee3fd19ee01c1fd9186eea609c5c3907d..0000000000000000000000000000000000000000
  4227. Binary files a/makefile2/CMakeFiles/3.0.0/CMakeDetermineCompilerABI_C.bin and /dev/null differ
  4228. diff --git a/makefile2/CMakeFiles/3.0.0/CMakeDetermineCompilerABI_CXX.bin b/makefile2/CMakeFiles/3.0.0/CMakeDetermineCompilerABI_CXX.bin
  4229. deleted file mode 100644
  4230. index bbe8c33111aeae5b9bd525514c04c35894097dd0..0000000000000000000000000000000000000000
  4231. Binary files a/makefile2/CMakeFiles/3.0.0/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ
  4232. diff --git a/makefile2/CMakeFiles/3.0.0/CMakeSystem.cmake b/makefile2/CMakeFiles/3.0.0/CMakeSystem.cmake
  4233. deleted file mode 100644
  4234. index a133f1db57b9b2f87e8fb4624646857a33ab53f8..0000000000000000000000000000000000000000
  4235. --- a/makefile2/CMakeFiles/3.0.0/CMakeSystem.cmake
  4236. +++ /dev/null
  4237. @@ -1,15 +0,0 @@
  4238. -set(CMAKE_HOST_SYSTEM "Linux-3.16.0-23-generic")
  4239. -set(CMAKE_HOST_SYSTEM_NAME "Linux")
  4240. -set(CMAKE_HOST_SYSTEM_VERSION "3.16.0-23-generic")
  4241. -set(CMAKE_HOST_SYSTEM_PROCESSOR "i686")
  4242. -
  4243. -
  4244. -
  4245. -set(CMAKE_SYSTEM "Linux-3.16.0-23-generic")
  4246. -set(CMAKE_SYSTEM_NAME "Linux")
  4247. -set(CMAKE_SYSTEM_VERSION "3.16.0-23-generic")
  4248. -set(CMAKE_SYSTEM_PROCESSOR "i686")
  4249. -
  4250. -set(CMAKE_CROSSCOMPILING "FALSE")
  4251. -
  4252. -set(CMAKE_SYSTEM_LOADED 1)
  4253. diff --git a/makefile2/CMakeFiles/3.0.0/CompilerIdC/CMakeCCompilerId.c b/makefile2/CMakeFiles/3.0.0/CompilerIdC/CMakeCCompilerId.c
  4254. deleted file mode 100644
  4255. index bd1f7d1312620b51f60581b401e6cee1b66ffbaf..0000000000000000000000000000000000000000
  4256. --- a/makefile2/CMakeFiles/3.0.0/CompilerIdC/CMakeCCompilerId.c
  4257. +++ /dev/null
  4258. @@ -1,442 +0,0 @@
  4259. -#ifdef __cplusplus
  4260. -# error "A C++ compiler has been selected for C."
  4261. -#endif
  4262. -
  4263. -/* Version number components: V=Version, R=Revision, P=Patch
  4264. -   Version date components:   YYYY=Year, MM=Month,   DD=Day  */
  4265. -
  4266. -#if defined(__18CXX)
  4267. -# define ID_VOID_MAIN
  4268. -#endif
  4269. -
  4270. -#if defined(__INTEL_COMPILER) || defined(__ICC)
  4271. -# define COMPILER_ID "Intel"
  4272. -  /* __INTEL_COMPILER = VRP */
  4273. -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
  4274. -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
  4275. -# if defined(__INTEL_COMPILER_UPDATE)
  4276. -#  define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
  4277. -# else
  4278. -#  define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER   % 10)
  4279. -# endif
  4280. -# if defined(__INTEL_COMPILER_BUILD_DATE)
  4281. -  /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
  4282. -#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
  4283. -# endif
  4284. -# if defined(_MSC_VER)
  4285. -#  define SIMULATE_ID "MSVC"
  4286. -   /* _MSC_VER = VVRR */
  4287. -#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
  4288. -#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
  4289. -# endif
  4290. -
  4291. -#elif defined(__PATHCC__)
  4292. -# define COMPILER_ID "PathScale"
  4293. -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
  4294. -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
  4295. -# if defined(__PATHCC_PATCHLEVEL__)
  4296. -#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
  4297. -# endif
  4298. -
  4299. -#elif defined(__clang__)
  4300. -# if defined(__apple_build_version__)
  4301. -#  define COMPILER_ID "AppleClang"
  4302. -#  define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
  4303. -# else
  4304. -#  define COMPILER_ID "Clang"
  4305. -# endif
  4306. -# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
  4307. -# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
  4308. -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
  4309. -# if defined(_MSC_VER)
  4310. -#  define SIMULATE_ID "MSVC"
  4311. -   /* _MSC_VER = VVRR */
  4312. -#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
  4313. -#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
  4314. -# endif
  4315. -
  4316. -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
  4317. -# define COMPILER_ID "Embarcadero"
  4318. -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
  4319. -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
  4320. -# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__     & 0xFFFF)
  4321. -
  4322. -#elif defined(__BORLANDC__)
  4323. -# define COMPILER_ID "Borland"
  4324. -  /* __BORLANDC__ = 0xVRR */
  4325. -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
  4326. -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
  4327. -
  4328. -#elif defined(__WATCOMC__)
  4329. -# define COMPILER_ID "Watcom"
  4330. -  /* __WATCOMC__ = VVRR */
  4331. -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
  4332. -# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100)
  4333. -
  4334. -#elif defined(__SUNPRO_C)
  4335. -# define COMPILER_ID "SunPro"
  4336. -# if __SUNPRO_C >= 0x5100
  4337. -   /* __SUNPRO_C = 0xVRRP */
  4338. -#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
  4339. -#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
  4340. -#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)
  4341. -# else
  4342. -   /* __SUNPRO_C = 0xVRP */
  4343. -#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
  4344. -#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
  4345. -#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)
  4346. -# endif
  4347. -
  4348. -#elif defined(__HP_cc)
  4349. -# define COMPILER_ID "HP"
  4350. -  /* __HP_cc = VVRRPP */
  4351. -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
  4352. -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
  4353. -# define COMPILER_VERSION_PATCH DEC(__HP_cc     % 100)
  4354. -
  4355. -#elif defined(__DECC)
  4356. -# define COMPILER_ID "Compaq"
  4357. -  /* __DECC_VER = VVRRTPPPP */
  4358. -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
  4359. -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000  % 100)
  4360. -# define COMPILER_VERSION_PATCH DEC(__DECC_VER         % 10000)
  4361. -
  4362. -#elif defined(__IBMC__)
  4363. -# if defined(__COMPILER_VER__)
  4364. -#  define COMPILER_ID "zOS"
  4365. -# else
  4366. -#  if __IBMC__ >= 800
  4367. -#   define COMPILER_ID "XL"
  4368. -#  else
  4369. -#   define COMPILER_ID "VisualAge"
  4370. -#  endif
  4371. -   /* __IBMC__ = VRP */
  4372. -#  define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
  4373. -#  define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
  4374. -#  define COMPILER_VERSION_PATCH DEC(__IBMC__    % 10)
  4375. -# endif
  4376. -
  4377. -#elif defined(__PGI)
  4378. -# define COMPILER_ID "PGI"
  4379. -# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
  4380. -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
  4381. -# if defined(__PGIC_PATCHLEVEL__)
  4382. -#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
  4383. -# endif
  4384. -
  4385. -#elif defined(_CRAYC)
  4386. -# define COMPILER_ID "Cray"
  4387. -# define COMPILER_VERSION_MAJOR DEC(_RELEASE)
  4388. -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
  4389. -
  4390. -#elif defined(__TI_COMPILER_VERSION__)
  4391. -# define COMPILER_ID "TI"
  4392. -  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
  4393. -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
  4394. -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)
  4395. -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)
  4396. -
  4397. -#elif defined(__TINYC__)
  4398. -# define COMPILER_ID "TinyCC"
  4399. -
  4400. -#elif defined(__SCO_VERSION__)
  4401. -# define COMPILER_ID "SCO"
  4402. -
  4403. -#elif defined(__GNUC__)
  4404. -# define COMPILER_ID "GNU"
  4405. -# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
  4406. -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
  4407. -# if defined(__GNUC_PATCHLEVEL__)
  4408. -#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
  4409. -# endif
  4410. -
  4411. -#elif defined(_MSC_VER)
  4412. -# define COMPILER_ID "MSVC"
  4413. -  /* _MSC_VER = VVRR */
  4414. -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
  4415. -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
  4416. -# if defined(_MSC_FULL_VER)
  4417. -#  if _MSC_VER >= 1400
  4418. -    /* _MSC_FULL_VER = VVRRPPPPP */
  4419. -#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
  4420. -#  else
  4421. -    /* _MSC_FULL_VER = VVRRPPPP */
  4422. -#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
  4423. -#  endif
  4424. -# endif
  4425. -# if defined(_MSC_BUILD)
  4426. -#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
  4427. -# endif
  4428. -
  4429. -/* Analog VisualDSP++ >= 4.5.6 */
  4430. -#elif defined(__VISUALDSPVERSION__)
  4431. -# define COMPILER_ID "ADSP"
  4432. -  /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
  4433. -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
  4434. -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
  4435. -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8  & 0xFF)
  4436. -
  4437. -/* Analog VisualDSP++ < 4.5.6 */
  4438. -#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
  4439. -# define COMPILER_ID "ADSP"
  4440. -
  4441. -/* IAR Systems compiler for embedded systems.
  4442. -   http://www.iar.com */
  4443. -#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC)
  4444. -# define COMPILER_ID "IAR"
  4445. -
  4446. -/* sdcc, the small devices C compiler for embedded systems,
  4447. -   http://sdcc.sourceforge.net  */
  4448. -#elif defined(SDCC)
  4449. -# define COMPILER_ID "SDCC"
  4450. -  /* SDCC = VRP */
  4451. -#  define COMPILER_VERSION_MAJOR DEC(SDCC/100)
  4452. -#  define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
  4453. -#  define COMPILER_VERSION_PATCH DEC(SDCC    % 10)
  4454. -
  4455. -#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
  4456. -# define COMPILER_ID "MIPSpro"
  4457. -# if defined(_SGI_COMPILER_VERSION)
  4458. -  /* _SGI_COMPILER_VERSION = VRP */
  4459. -#  define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
  4460. -#  define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
  4461. -#  define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION    % 10)
  4462. -# else
  4463. -  /* _COMPILER_VERSION = VRP */
  4464. -#  define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
  4465. -#  define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
  4466. -#  define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION    % 10)
  4467. -# endif
  4468. -
  4469. -/* This compiler is either not known or is too old to define an
  4470. -   identification macro.  Try to identify the platform and guess that
  4471. -   it is the native compiler.  */
  4472. -#elif defined(__sgi)
  4473. -# define COMPILER_ID "MIPSpro"
  4474. -
  4475. -#elif defined(__hpux) || defined(__hpua)
  4476. -# define COMPILER_ID "HP"
  4477. -
  4478. -#else /* unknown compiler */
  4479. -# define COMPILER_ID ""
  4480. -
  4481. -#endif
  4482. -
  4483. -/* Construct the string literal in pieces to prevent the source from
  4484. -   getting matched.  Store it in a pointer rather than an array
  4485. -   because some compilers will just produce instructions to fill the
  4486. -   array rather than assigning a pointer to a static array.  */
  4487. -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
  4488. -#ifdef SIMULATE_ID
  4489. -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
  4490. -#endif
  4491. -
  4492. -#ifdef __QNXNTO__
  4493. -char const* qnxnto = "INFO" ":" "qnxnto";
  4494. -#endif
  4495. -
  4496. -/* Identify known platforms by name.  */
  4497. -#if defined(__linux) || defined(__linux__) || defined(linux)
  4498. -# define PLATFORM_ID "Linux"
  4499. -
  4500. -#elif defined(__CYGWIN__)
  4501. -# define PLATFORM_ID "Cygwin"
  4502. -
  4503. -#elif defined(__MINGW32__)
  4504. -# define PLATFORM_ID "MinGW"
  4505. -
  4506. -#elif defined(__APPLE__)
  4507. -# define PLATFORM_ID "Darwin"
  4508. -
  4509. -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
  4510. -# define PLATFORM_ID "Windows"
  4511. -
  4512. -#elif defined(__FreeBSD__) || defined(__FreeBSD)
  4513. -# define PLATFORM_ID "FreeBSD"
  4514. -
  4515. -#elif defined(__NetBSD__) || defined(__NetBSD)
  4516. -# define PLATFORM_ID "NetBSD"
  4517. -
  4518. -#elif defined(__OpenBSD__) || defined(__OPENBSD)
  4519. -# define PLATFORM_ID "OpenBSD"
  4520. -
  4521. -#elif defined(__sun) || defined(sun)
  4522. -# define PLATFORM_ID "SunOS"
  4523. -
  4524. -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
  4525. -# define PLATFORM_ID "AIX"
  4526. -
  4527. -#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
  4528. -# define PLATFORM_ID "IRIX"
  4529. -
  4530. -#elif defined(__hpux) || defined(__hpux__)
  4531. -# define PLATFORM_ID "HP-UX"
  4532. -
  4533. -#elif defined(__HAIKU__)
  4534. -# define PLATFORM_ID "Haiku"
  4535. -
  4536. -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
  4537. -# define PLATFORM_ID "BeOS"
  4538. -
  4539. -#elif defined(__QNX__) || defined(__QNXNTO__)
  4540. -# define PLATFORM_ID "QNX"
  4541. -
  4542. -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
  4543. -# define PLATFORM_ID "Tru64"
  4544. -
  4545. -#elif defined(__riscos) || defined(__riscos__)
  4546. -# define PLATFORM_ID "RISCos"
  4547. -
  4548. -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
  4549. -# define PLATFORM_ID "SINIX"
  4550. -
  4551. -#elif defined(__UNIX_SV__)
  4552. -# define PLATFORM_ID "UNIX_SV"
  4553. -
  4554. -#elif defined(__bsdos__)
  4555. -# define PLATFORM_ID "BSDOS"
  4556. -
  4557. -#elif defined(_MPRAS) || defined(MPRAS)
  4558. -# define PLATFORM_ID "MP-RAS"
  4559. -
  4560. -#elif defined(__osf) || defined(__osf__)
  4561. -# define PLATFORM_ID "OSF1"
  4562. -
  4563. -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
  4564. -# define PLATFORM_ID "SCO_SV"
  4565. -
  4566. -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
  4567. -# define PLATFORM_ID "ULTRIX"
  4568. -
  4569. -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
  4570. -# define PLATFORM_ID "Xenix"
  4571. -
  4572. -#else /* unknown platform */
  4573. -# define PLATFORM_ID ""
  4574. -
  4575. -#endif
  4576. -
  4577. -/* For windows compilers MSVC and Intel we can determine
  4578. -   the architecture of the compiler being used.  This is because
  4579. -   the compilers do not have flags that can change the architecture,
  4580. -   but rather depend on which compiler is being used
  4581. -*/
  4582. -#if defined(_WIN32) && defined(_MSC_VER)
  4583. -# if defined(_M_IA64)
  4584. -#  define ARCHITECTURE_ID "IA64"
  4585. -
  4586. -# elif defined(_M_X64) || defined(_M_AMD64)
  4587. -#  define ARCHITECTURE_ID "x64"
  4588. -
  4589. -# elif defined(_M_IX86)
  4590. -#  define ARCHITECTURE_ID "X86"
  4591. -
  4592. -# elif defined(_M_ARM)
  4593. -#  define ARCHITECTURE_ID "ARM"
  4594. -
  4595. -# elif defined(_M_MIPS)
  4596. -#  define ARCHITECTURE_ID "MIPS"
  4597. -
  4598. -# elif defined(_M_SH)
  4599. -#  define ARCHITECTURE_ID "SHx"
  4600. -
  4601. -# else /* unknown architecture */
  4602. -#  define ARCHITECTURE_ID ""
  4603. -# endif
  4604. -
  4605. -#else
  4606. -#  define ARCHITECTURE_ID ""
  4607. -#endif
  4608. -
  4609. -/* Convert integer to decimal digit literals.  */
  4610. -#define DEC(n)                   \
  4611. -  ('0' + (((n) / 10000000)%10)), \
  4612. -  ('0' + (((n) / 1000000)%10)),  \
  4613. -  ('0' + (((n) / 100000)%10)),   \
  4614. -  ('0' + (((n) / 10000)%10)),    \
  4615. -  ('0' + (((n) / 1000)%10)),     \
  4616. -  ('0' + (((n) / 100)%10)),      \
  4617. -  ('0' + (((n) / 10)%10)),       \
  4618. -  ('0' +  ((n) % 10))
  4619. -
  4620. -/* Convert integer to hex digit literals.  */
  4621. -#define HEX(n)             \
  4622. -  ('0' + ((n)>>28 & 0xF)), \
  4623. -  ('0' + ((n)>>24 & 0xF)), \
  4624. -  ('0' + ((n)>>20 & 0xF)), \
  4625. -  ('0' + ((n)>>16 & 0xF)), \
  4626. -  ('0' + ((n)>>12 & 0xF)), \
  4627. -  ('0' + ((n)>>8  & 0xF)), \
  4628. -  ('0' + ((n)>>4  & 0xF)), \
  4629. -  ('0' + ((n)     & 0xF))
  4630. -
  4631. -/* Construct a string literal encoding the version number components. */
  4632. -#ifdef COMPILER_VERSION_MAJOR
  4633. -char const info_version[] = {
  4634. -  'I', 'N', 'F', 'O', ':',
  4635. -  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
  4636. -  COMPILER_VERSION_MAJOR,
  4637. -# ifdef COMPILER_VERSION_MINOR
  4638. -  '.', COMPILER_VERSION_MINOR,
  4639. -#  ifdef COMPILER_VERSION_PATCH
  4640. -   '.', COMPILER_VERSION_PATCH,
  4641. -#   ifdef COMPILER_VERSION_TWEAK
  4642. -    '.', COMPILER_VERSION_TWEAK,
  4643. -#   endif
  4644. -#  endif
  4645. -# endif
  4646. -  ']','\0'};
  4647. -#endif
  4648. -
  4649. -/* Construct a string literal encoding the version number components. */
  4650. -#ifdef SIMULATE_VERSION_MAJOR
  4651. -char const info_simulate_version[] = {
  4652. -  'I', 'N', 'F', 'O', ':',
  4653. -  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
  4654. -  SIMULATE_VERSION_MAJOR,
  4655. -# ifdef SIMULATE_VERSION_MINOR
  4656. -  '.', SIMULATE_VERSION_MINOR,
  4657. -#  ifdef SIMULATE_VERSION_PATCH
  4658. -   '.', SIMULATE_VERSION_PATCH,
  4659. -#   ifdef SIMULATE_VERSION_TWEAK
  4660. -    '.', SIMULATE_VERSION_TWEAK,
  4661. -#   endif
  4662. -#  endif
  4663. -# endif
  4664. -  ']','\0'};
  4665. -#endif
  4666. -
  4667. -/* Construct the string literal in pieces to prevent the source from
  4668. -   getting matched.  Store it in a pointer rather than an array
  4669. -   because some compilers will just produce instructions to fill the
  4670. -   array rather than assigning a pointer to a static array.  */
  4671. -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
  4672. -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
  4673. -
  4674. -
  4675. -
  4676. -
  4677. -/*--------------------------------------------------------------------------*/
  4678. -
  4679. -#ifdef ID_VOID_MAIN
  4680. -void main() {}
  4681. -#else
  4682. -int main(int argc, char* argv[])
  4683. -{
  4684. -  int require = 0;
  4685. -  require += info_compiler[argc];
  4686. -  require += info_platform[argc];
  4687. -  require += info_arch[argc];
  4688. -#ifdef COMPILER_VERSION_MAJOR
  4689. -  require += info_version[argc];
  4690. -#endif
  4691. -#ifdef SIMULATE_ID
  4692. -  require += info_simulate[argc];
  4693. -#endif
  4694. -#ifdef SIMULATE_VERSION_MAJOR
  4695. -  require += info_simulate_version[argc];
  4696. -#endif
  4697. -  (void)argv;
  4698. -  return require;
  4699. -}
  4700. -#endif
  4701. diff --git a/makefile2/CMakeFiles/3.0.0/CompilerIdC/a.out b/makefile2/CMakeFiles/3.0.0/CompilerIdC/a.out
  4702. deleted file mode 100644
  4703. index 4995439cf1fcf22600f17984e9936d8c229cb8a3..0000000000000000000000000000000000000000
  4704. Binary files a/makefile2/CMakeFiles/3.0.0/CompilerIdC/a.out and /dev/null differ
  4705. diff --git a/makefile2/CMakeFiles/3.0.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/makefile2/CMakeFiles/3.0.0/CompilerIdCXX/CMakeCXXCompilerId.cpp
  4706. deleted file mode 100644
  4707. index a315c6a63b37e3a2c20ab2ea0bf0e871714a4e21..0000000000000000000000000000000000000000
  4708. --- a/makefile2/CMakeFiles/3.0.0/CompilerIdCXX/CMakeCXXCompilerId.cpp
  4709. +++ /dev/null
  4710. @@ -1,430 +0,0 @@
  4711. -/* This source file must have a .cpp extension so that all C++ compilers
  4712. -   recognize the extension without flags.  Borland does not know .cxx for
  4713. -   example.  */
  4714. -#ifndef __cplusplus
  4715. -# error "A C compiler has been selected for C++."
  4716. -#endif
  4717. -
  4718. -/* Version number components: V=Version, R=Revision, P=Patch
  4719. -   Version date components:   YYYY=Year, MM=Month,   DD=Day  */
  4720. -
  4721. -#if defined(__COMO__)
  4722. -# define COMPILER_ID "Comeau"
  4723. -  /* __COMO_VERSION__ = VRR */
  4724. -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
  4725. -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
  4726. -
  4727. -#elif defined(__INTEL_COMPILER) || defined(__ICC)
  4728. -# define COMPILER_ID "Intel"
  4729. -  /* __INTEL_COMPILER = VRP */
  4730. -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
  4731. -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
  4732. -# if defined(__INTEL_COMPILER_UPDATE)
  4733. -#  define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
  4734. -# else
  4735. -#  define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER   % 10)
  4736. -# endif
  4737. -# if defined(__INTEL_COMPILER_BUILD_DATE)
  4738. -  /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
  4739. -#  define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
  4740. -# endif
  4741. -# if defined(_MSC_VER)
  4742. -#  define SIMULATE_ID "MSVC"
  4743. -   /* _MSC_VER = VVRR */
  4744. -#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
  4745. -#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
  4746. -# endif
  4747. -
  4748. -#elif defined(__PATHCC__)
  4749. -# define COMPILER_ID "PathScale"
  4750. -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
  4751. -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
  4752. -# if defined(__PATHCC_PATCHLEVEL__)
  4753. -#  define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
  4754. -# endif
  4755. -
  4756. -#elif defined(__clang__)
  4757. -# if defined(__apple_build_version__)
  4758. -#  define COMPILER_ID "AppleClang"
  4759. -#  define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
  4760. -# else
  4761. -#  define COMPILER_ID "Clang"
  4762. -# endif
  4763. -# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
  4764. -# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
  4765. -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
  4766. -# if defined(_MSC_VER)
  4767. -#  define SIMULATE_ID "MSVC"
  4768. -   /* _MSC_VER = VVRR */
  4769. -#  define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
  4770. -#  define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
  4771. -# endif
  4772. -
  4773. -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
  4774. -# define COMPILER_ID "Embarcadero"
  4775. -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
  4776. -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
  4777. -# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__     & 0xFFFF)
  4778. -
  4779. -#elif defined(__BORLANDC__)
  4780. -# define COMPILER_ID "Borland"
  4781. -  /* __BORLANDC__ = 0xVRR */
  4782. -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
  4783. -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
  4784. -
  4785. -#elif defined(__WATCOMC__)
  4786. -# define COMPILER_ID "Watcom"
  4787. -  /* __WATCOMC__ = VVRR */
  4788. -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
  4789. -# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100)
  4790. -
  4791. -#elif defined(__SUNPRO_CC)
  4792. -# define COMPILER_ID "SunPro"
  4793. -# if __SUNPRO_CC >= 0x5100
  4794. -   /* __SUNPRO_CC = 0xVRRP */
  4795. -#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
  4796. -#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
  4797. -#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)
  4798. -# else
  4799. -   /* __SUNPRO_CC = 0xVRP */
  4800. -#  define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
  4801. -#  define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
  4802. -#  define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC    & 0xF)
  4803. -# endif
  4804. -
  4805. -#elif defined(__HP_aCC)
  4806. -# define COMPILER_ID "HP"
  4807. -  /* __HP_aCC = VVRRPP */
  4808. -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
  4809. -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
  4810. -# define COMPILER_VERSION_PATCH DEC(__HP_aCC     % 100)
  4811. -
  4812. -#elif defined(__DECCXX)
  4813. -# define COMPILER_ID "Compaq"
  4814. -  /* __DECCXX_VER = VVRRTPPPP */
  4815. -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
  4816. -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000  % 100)
  4817. -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER         % 10000)
  4818. -
  4819. -#elif defined(__IBMCPP__)
  4820. -# if defined(__COMPILER_VER__)
  4821. -#  define COMPILER_ID "zOS"
  4822. -# else
  4823. -#  if __IBMCPP__ >= 800
  4824. -#   define COMPILER_ID "XL"
  4825. -#  else
  4826. -#   define COMPILER_ID "VisualAge"
  4827. -#  endif
  4828. -   /* __IBMCPP__ = VRP */
  4829. -#  define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
  4830. -#  define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
  4831. -#  define COMPILER_VERSION_PATCH DEC(__IBMCPP__    % 10)
  4832. -# endif
  4833. -
  4834. -#elif defined(__PGI)
  4835. -# define COMPILER_ID "PGI"
  4836. -# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
  4837. -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
  4838. -# if defined(__PGIC_PATCHLEVEL__)
  4839. -#  define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
  4840. -# endif
  4841. -
  4842. -#elif defined(_CRAYC)
  4843. -# define COMPILER_ID "Cray"
  4844. -# define COMPILER_VERSION_MAJOR DEC(_RELEASE)
  4845. -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
  4846. -
  4847. -#elif defined(__TI_COMPILER_VERSION__)
  4848. -# define COMPILER_ID "TI"
  4849. -  /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
  4850. -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
  4851. -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000   % 1000)
  4852. -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__        % 1000)
  4853. -
  4854. -#elif defined(__SCO_VERSION__)
  4855. -# define COMPILER_ID "SCO"
  4856. -
  4857. -#elif defined(__GNUC__)
  4858. -# define COMPILER_ID "GNU"
  4859. -# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
  4860. -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
  4861. -# if defined(__GNUC_PATCHLEVEL__)
  4862. -#  define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
  4863. -# endif
  4864. -
  4865. -#elif defined(_MSC_VER)
  4866. -# define COMPILER_ID "MSVC"
  4867. -  /* _MSC_VER = VVRR */
  4868. -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
  4869. -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
  4870. -# if defined(_MSC_FULL_VER)
  4871. -#  if _MSC_VER >= 1400
  4872. -    /* _MSC_FULL_VER = VVRRPPPPP */
  4873. -#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
  4874. -#  else
  4875. -    /* _MSC_FULL_VER = VVRRPPPP */
  4876. -#   define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
  4877. -#  endif
  4878. -# endif
  4879. -# if defined(_MSC_BUILD)
  4880. -#  define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
  4881. -# endif
  4882. -
  4883. -/* Analog VisualDSP++ >= 4.5.6 */
  4884. -#elif defined(__VISUALDSPVERSION__)
  4885. -# define COMPILER_ID "ADSP"
  4886. -  /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
  4887. -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
  4888. -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
  4889. -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8  & 0xFF)
  4890. -
  4891. -/* Analog VisualDSP++ < 4.5.6 */
  4892. -#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
  4893. -# define COMPILER_ID "ADSP"
  4894. -
  4895. -/* IAR Systems compiler for embedded systems.
  4896. -   http://www.iar.com */
  4897. -#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC)
  4898. -# define COMPILER_ID "IAR"
  4899. -
  4900. -#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
  4901. -# define COMPILER_ID "MIPSpro"
  4902. -# if defined(_SGI_COMPILER_VERSION)
  4903. -  /* _SGI_COMPILER_VERSION = VRP */
  4904. -#  define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
  4905. -#  define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
  4906. -#  define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION    % 10)
  4907. -# else
  4908. -  /* _COMPILER_VERSION = VRP */
  4909. -#  define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
  4910. -#  define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
  4911. -#  define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION    % 10)
  4912. -# endif
  4913. -
  4914. -/* This compiler is either not known or is too old to define an
  4915. -   identification macro.  Try to identify the platform and guess that
  4916. -   it is the native compiler.  */
  4917. -#elif defined(__sgi)
  4918. -# define COMPILER_ID "MIPSpro"
  4919. -
  4920. -#elif defined(__hpux) || defined(__hpua)
  4921. -# define COMPILER_ID "HP"
  4922. -
  4923. -#else /* unknown compiler */
  4924. -# define COMPILER_ID ""
  4925. -
  4926. -#endif
  4927. -
  4928. -/* Construct the string literal in pieces to prevent the source from
  4929. -   getting matched.  Store it in a pointer rather than an array
  4930. -   because some compilers will just produce instructions to fill the
  4931. -   array rather than assigning a pointer to a static array.  */
  4932. -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
  4933. -#ifdef SIMULATE_ID
  4934. -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
  4935. -#endif
  4936. -
  4937. -#ifdef __QNXNTO__
  4938. -char const* qnxnto = "INFO" ":" "qnxnto";
  4939. -#endif
  4940. -
  4941. -/* Identify known platforms by name.  */
  4942. -#if defined(__linux) || defined(__linux__) || defined(linux)
  4943. -# define PLATFORM_ID "Linux"
  4944. -
  4945. -#elif defined(__CYGWIN__)
  4946. -# define PLATFORM_ID "Cygwin"
  4947. -
  4948. -#elif defined(__MINGW32__)
  4949. -# define PLATFORM_ID "MinGW"
  4950. -
  4951. -#elif defined(__APPLE__)
  4952. -# define PLATFORM_ID "Darwin"
  4953. -
  4954. -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
  4955. -# define PLATFORM_ID "Windows"
  4956. -
  4957. -#elif defined(__FreeBSD__) || defined(__FreeBSD)
  4958. -# define PLATFORM_ID "FreeBSD"
  4959. -
  4960. -#elif defined(__NetBSD__) || defined(__NetBSD)
  4961. -# define PLATFORM_ID "NetBSD"
  4962. -
  4963. -#elif defined(__OpenBSD__) || defined(__OPENBSD)
  4964. -# define PLATFORM_ID "OpenBSD"
  4965. -
  4966. -#elif defined(__sun) || defined(sun)
  4967. -# define PLATFORM_ID "SunOS"
  4968. -
  4969. -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
  4970. -# define PLATFORM_ID "AIX"
  4971. -
  4972. -#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
  4973. -# define PLATFORM_ID "IRIX"
  4974. -
  4975. -#elif defined(__hpux) || defined(__hpux__)
  4976. -# define PLATFORM_ID "HP-UX"
  4977. -
  4978. -#elif defined(__HAIKU__)
  4979. -# define PLATFORM_ID "Haiku"
  4980. -
  4981. -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
  4982. -# define PLATFORM_ID "BeOS"
  4983. -
  4984. -#elif defined(__QNX__) || defined(__QNXNTO__)
  4985. -# define PLATFORM_ID "QNX"
  4986. -
  4987. -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
  4988. -# define PLATFORM_ID "Tru64"
  4989. -
  4990. -#elif defined(__riscos) || defined(__riscos__)
  4991. -# define PLATFORM_ID "RISCos"
  4992. -
  4993. -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
  4994. -# define PLATFORM_ID "SINIX"
  4995. -
  4996. -#elif defined(__UNIX_SV__)
  4997. -# define PLATFORM_ID "UNIX_SV"
  4998. -
  4999. -#elif defined(__bsdos__)
  5000. -# define PLATFORM_ID "BSDOS"
  5001. -
  5002. -#elif defined(_MPRAS) || defined(MPRAS)
  5003. -# define PLATFORM_ID "MP-RAS"
  5004. -
  5005. -#elif defined(__osf) || defined(__osf__)
  5006. -# define PLATFORM_ID "OSF1"
  5007. -
  5008. -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
  5009. -# define PLATFORM_ID "SCO_SV"
  5010. -
  5011. -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
  5012. -# define PLATFORM_ID "ULTRIX"
  5013. -
  5014. -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
  5015. -# define PLATFORM_ID "Xenix"
  5016. -
  5017. -#else /* unknown platform */
  5018. -# define PLATFORM_ID ""
  5019. -
  5020. -#endif
  5021. -
  5022. -/* For windows compilers MSVC and Intel we can determine
  5023. -   the architecture of the compiler being used.  This is because
  5024. -   the compilers do not have flags that can change the architecture,
  5025. -   but rather depend on which compiler is being used
  5026. -*/
  5027. -#if defined(_WIN32) && defined(_MSC_VER)
  5028. -# if defined(_M_IA64)
  5029. -#  define ARCHITECTURE_ID "IA64"
  5030. -
  5031. -# elif defined(_M_X64) || defined(_M_AMD64)
  5032. -#  define ARCHITECTURE_ID "x64"
  5033. -
  5034. -# elif defined(_M_IX86)
  5035. -#  define ARCHITECTURE_ID "X86"
  5036. -
  5037. -# elif defined(_M_ARM)
  5038. -#  define ARCHITECTURE_ID "ARM"
  5039. -
  5040. -# elif defined(_M_MIPS)
  5041. -#  define ARCHITECTURE_ID "MIPS"
  5042. -
  5043. -# elif defined(_M_SH)
  5044. -#  define ARCHITECTURE_ID "SHx"
  5045. -
  5046. -# else /* unknown architecture */
  5047. -#  define ARCHITECTURE_ID ""
  5048. -# endif
  5049. -
  5050. -#else
  5051. -#  define ARCHITECTURE_ID ""
  5052. -#endif
  5053. -
  5054. -/* Convert integer to decimal digit literals.  */
  5055. -#define DEC(n)                   \
  5056. -  ('0' + (((n) / 10000000)%10)), \
  5057. -  ('0' + (((n) / 1000000)%10)),  \
  5058. -  ('0' + (((n) / 100000)%10)),   \
  5059. -  ('0' + (((n) / 10000)%10)),    \
  5060. -  ('0' + (((n) / 1000)%10)),     \
  5061. -  ('0' + (((n) / 100)%10)),      \
  5062. -  ('0' + (((n) / 10)%10)),       \
  5063. -  ('0' +  ((n) % 10))
  5064. -
  5065. -/* Convert integer to hex digit literals.  */
  5066. -#define HEX(n)             \
  5067. -  ('0' + ((n)>>28 & 0xF)), \
  5068. -  ('0' + ((n)>>24 & 0xF)), \
  5069. -  ('0' + ((n)>>20 & 0xF)), \
  5070. -  ('0' + ((n)>>16 & 0xF)), \
  5071. -  ('0' + ((n)>>12 & 0xF)), \
  5072. -  ('0' + ((n)>>8  & 0xF)), \
  5073. -  ('0' + ((n)>>4  & 0xF)), \
  5074. -  ('0' + ((n)     & 0xF))
  5075. -
  5076. -/* Construct a string literal encoding the version number components. */
  5077. -#ifdef COMPILER_VERSION_MAJOR
  5078. -char const info_version[] = {
  5079. -  'I', 'N', 'F', 'O', ':',
  5080. -  'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
  5081. -  COMPILER_VERSION_MAJOR,
  5082. -# ifdef COMPILER_VERSION_MINOR
  5083. -  '.', COMPILER_VERSION_MINOR,
  5084. -#  ifdef COMPILER_VERSION_PATCH
  5085. -   '.', COMPILER_VERSION_PATCH,
  5086. -#   ifdef COMPILER_VERSION_TWEAK
  5087. -    '.', COMPILER_VERSION_TWEAK,
  5088. -#   endif
  5089. -#  endif
  5090. -# endif
  5091. -  ']','\0'};
  5092. -#endif
  5093. -
  5094. -/* Construct a string literal encoding the version number components. */
  5095. -#ifdef SIMULATE_VERSION_MAJOR
  5096. -char const info_simulate_version[] = {
  5097. -  'I', 'N', 'F', 'O', ':',
  5098. -  's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
  5099. -  SIMULATE_VERSION_MAJOR,
  5100. -# ifdef SIMULATE_VERSION_MINOR
  5101. -  '.', SIMULATE_VERSION_MINOR,
  5102. -#  ifdef SIMULATE_VERSION_PATCH
  5103. -   '.', SIMULATE_VERSION_PATCH,
  5104. -#   ifdef SIMULATE_VERSION_TWEAK
  5105. -    '.', SIMULATE_VERSION_TWEAK,
  5106. -#   endif
  5107. -#  endif
  5108. -# endif
  5109. -  ']','\0'};
  5110. -#endif
  5111. -
  5112. -/* Construct the string literal in pieces to prevent the source from
  5113. -   getting matched.  Store it in a pointer rather than an array
  5114. -   because some compilers will just produce instructions to fill the
  5115. -   array rather than assigning a pointer to a static array.  */
  5116. -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
  5117. -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
  5118. -
  5119. -
  5120. -
  5121. -
  5122. -/*--------------------------------------------------------------------------*/
  5123. -
  5124. -int main(int argc, char* argv[])
  5125. -{
  5126. -  int require = 0;
  5127. -  require += info_compiler[argc];
  5128. -  require += info_platform[argc];
  5129. -#ifdef COMPILER_VERSION_MAJOR
  5130. -  require += info_version[argc];
  5131. -#endif
  5132. -#ifdef SIMULATE_ID
  5133. -  require += info_simulate[argc];
  5134. -#endif
  5135. -#ifdef SIMULATE_VERSION_MAJOR
  5136. -  require += info_simulate_version[argc];
  5137. -#endif
  5138. -  (void)argv;
  5139. -  return require;
  5140. -}
  5141. diff --git a/makefile2/CMakeFiles/3.0.0/CompilerIdCXX/a.out b/makefile2/CMakeFiles/3.0.0/CompilerIdCXX/a.out
  5142. deleted file mode 100644
  5143. index 260cf2e3f903356964b5164f833a33f6ee589c78..0000000000000000000000000000000000000000
  5144. Binary files a/makefile2/CMakeFiles/3.0.0/CompilerIdCXX/a.out and /dev/null differ
  5145. diff --git a/makefile2/CMakeFiles/CMakeError.log b/makefile2/CMakeFiles/CMakeError.log
  5146. deleted file mode 100644
  5147. index f01cf8d40f1c3d62e3982bb660266edf8eeef7bc..0000000000000000000000000000000000000000
  5148. --- a/makefile2/CMakeFiles/CMakeError.log
  5149. +++ /dev/null
  5150. @@ -1,169 +0,0 @@
  5151. -Performing C++ SOURCE FILE Test _OFFT_IS_64BIT failed with the following output:
  5152. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5153. -
  5154. -Run Build Command:"/usr/bin/make" "cmTryCompileExec672335492/fast"
  5155. -/usr/bin/make -f CMakeFiles/cmTryCompileExec672335492.dir/build.make CMakeFiles/cmTryCompileExec672335492.dir/build
  5156. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5157. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5158. -Building CXX object CMakeFiles/cmTryCompileExec672335492.dir/src.cxx.o
  5159. -/usr/bin/c++   -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -D_OFFT_IS_64BIT   -o CMakeFiles/cmTryCompileExec672335492.dir/src.cxx.o -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/src.cxx
  5160. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/src.cxx:7:36: warning: left shift count >= width of type
  5161. - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  5162. -                                    ^
  5163. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/src.cxx:8:23: note: in expansion of macro ‘LARGE_OFF_T’
  5164. -   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1];
  5165. -                       ^
  5166. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/src.cxx:7:60: warning: left shift count >= width of type
  5167. - #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  5168. -                                                            ^
  5169. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/src.cxx:8:23: note: in expansion of macro ‘LARGE_OFF_T’
  5170. -   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1];
  5171. -                       ^
  5172. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/src.cxx:8:97: error: size of array ‘off_t_is_large’ is negative
  5173. -   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1];
  5174. -                                                                                                 ^
  5175. -CMakeFiles/cmTryCompileExec672335492.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec672335492.dir/src.cxx.o' failed
  5176. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5177. -make[1]: *** [CMakeFiles/cmTryCompileExec672335492.dir/src.cxx.o] Error 1
  5178. -Makefile:118: recipe for target 'cmTryCompileExec672335492/fast' failed
  5179. -make: *** [cmTryCompileExec672335492/fast] Error 2
  5180. -
  5181. -Source file was:
  5182. -
  5183. -#include <sys/types.h>
  5184. - /* Check that off_t can represent 2**63 - 1 correctly.
  5185. -    We can't simply define LARGE_OFF_T to be 9223372036854775807,
  5186. -    since some C++ compilers masquerading as C compilers
  5187. -    incorrectly reject 9223372036854775807.  */
  5188. -#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  5189. -  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1];
  5190. -  int main() { return 0; }
  5191. -
  5192. -Determining if files ieeefp.h exist failed with the following output:
  5193. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5194. -
  5195. -Run Build Command:"/usr/bin/make" "cmTryCompileExec2673939435/fast"
  5196. -/usr/bin/make -f CMakeFiles/cmTryCompileExec2673939435.dir/build.make CMakeFiles/cmTryCompileExec2673939435.dir/build
  5197. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5198. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5199. -Building C object CMakeFiles/cmTryCompileExec2673939435.dir/CheckIncludeFiles.c.o
  5200. -/usr/bin/cc  -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -std=iso9899:1990 -fno-common -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wmissing-format-attribute -Wwrite-strings -Werror=implicit-function-declaration    -o CMakeFiles/cmTryCompileExec2673939435.dir/CheckIncludeFiles.c.o   -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
  5201. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:20: fatal error: ieeefp.h: No such file or directory
  5202. - #include <ieeefp.h>
  5203. -                    ^
  5204. -compilation terminated.
  5205. -CMakeFiles/cmTryCompileExec2673939435.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2673939435.dir/CheckIncludeFiles.c.o' failed
  5206. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5207. -make[1]: *** [CMakeFiles/cmTryCompileExec2673939435.dir/CheckIncludeFiles.c.o] Error 1
  5208. -Makefile:118: recipe for target 'cmTryCompileExec2673939435/fast' failed
  5209. -make: *** [cmTryCompileExec2673939435/fast] Error 2
  5210. -
  5211. -Source:
  5212. -/* */
  5213. -#include <ieeefp.h>
  5214. -
  5215. -
  5216. -int main(){return 0;}
  5217. -
  5218. -Determining if the Q_WS_WIN exist failed with the following output:
  5219. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5220. -
  5221. -Run Build Command:"/usr/bin/make" "cmTryCompileExec3181832907/fast"
  5222. -/usr/bin/make -f CMakeFiles/cmTryCompileExec3181832907.dir/build.make CMakeFiles/cmTryCompileExec3181832907.dir/build
  5223. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5224. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5225. -Building CXX object CMakeFiles/cmTryCompileExec3181832907.dir/CheckSymbolExists.cxx.o
  5226. -/usr/bin/c++   -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -std=c++0x -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type  -I/usr/include/qt4    -o CMakeFiles/cmTryCompileExec3181832907.dir/CheckSymbolExists.cxx.o -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
  5227. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
  5228. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_WIN’ was not declared in this scope
  5229. -   return ((int*)(&Q_WS_WIN))[argc];
  5230. -                   ^
  5231. -CMakeFiles/cmTryCompileExec3181832907.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3181832907.dir/CheckSymbolExists.cxx.o' failed
  5232. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5233. -make[1]: *** [CMakeFiles/cmTryCompileExec3181832907.dir/CheckSymbolExists.cxx.o] Error 1
  5234. -Makefile:118: recipe for target 'cmTryCompileExec3181832907/fast' failed
  5235. -make: *** [cmTryCompileExec3181832907/fast] Error 2
  5236. -
  5237. -File /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
  5238. -/* */
  5239. -#include <QtCore/qglobal.h>
  5240. -
  5241. -int main(int argc, char** argv)
  5242. -{
  5243. -  (void)argv;
  5244. -#ifndef Q_WS_WIN
  5245. -  return ((int*)(&Q_WS_WIN))[argc];
  5246. -#else
  5247. -  (void)argc;
  5248. -  return 0;
  5249. -#endif
  5250. -}
  5251. -
  5252. -Determining if the Q_WS_QWS exist failed with the following output:
  5253. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5254. -
  5255. -Run Build Command:"/usr/bin/make" "cmTryCompileExec3464394932/fast"
  5256. -/usr/bin/make -f CMakeFiles/cmTryCompileExec3464394932.dir/build.make CMakeFiles/cmTryCompileExec3464394932.dir/build
  5257. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5258. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5259. -Building CXX object CMakeFiles/cmTryCompileExec3464394932.dir/CheckSymbolExists.cxx.o
  5260. -/usr/bin/c++   -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -std=c++0x -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type  -I/usr/include/qt4    -o CMakeFiles/cmTryCompileExec3464394932.dir/CheckSymbolExists.cxx.o -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
  5261. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
  5262. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_QWS’ was not declared in this scope
  5263. -   return ((int*)(&Q_WS_QWS))[argc];
  5264. -                   ^
  5265. -CMakeFiles/cmTryCompileExec3464394932.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3464394932.dir/CheckSymbolExists.cxx.o' failed
  5266. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5267. -make[1]: *** [CMakeFiles/cmTryCompileExec3464394932.dir/CheckSymbolExists.cxx.o] Error 1
  5268. -Makefile:118: recipe for target 'cmTryCompileExec3464394932/fast' failed
  5269. -make: *** [cmTryCompileExec3464394932/fast] Error 2
  5270. -
  5271. -File /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
  5272. -/* */
  5273. -#include <QtCore/qglobal.h>
  5274. -
  5275. -int main(int argc, char** argv)
  5276. -{
  5277. -  (void)argv;
  5278. -#ifndef Q_WS_QWS
  5279. -  return ((int*)(&Q_WS_QWS))[argc];
  5280. -#else
  5281. -  (void)argc;
  5282. -  return 0;
  5283. -#endif
  5284. -}
  5285. -
  5286. -Determining if the Q_WS_MAC exist failed with the following output:
  5287. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5288. -
  5289. -Run Build Command:"/usr/bin/make" "cmTryCompileExec233326013/fast"
  5290. -/usr/bin/make -f CMakeFiles/cmTryCompileExec233326013.dir/build.make CMakeFiles/cmTryCompileExec233326013.dir/build
  5291. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5292. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5293. -Building CXX object CMakeFiles/cmTryCompileExec233326013.dir/CheckSymbolExists.cxx.o
  5294. -/usr/bin/c++   -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -std=c++0x -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type  -I/usr/include/qt4    -o CMakeFiles/cmTryCompileExec233326013.dir/CheckSymbolExists.cxx.o -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
  5295. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
  5296. -/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_MAC’ was not declared in this scope
  5297. -   return ((int*)(&Q_WS_MAC))[argc];
  5298. -                   ^
  5299. -CMakeFiles/cmTryCompileExec233326013.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec233326013.dir/CheckSymbolExists.cxx.o' failed
  5300. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5301. -make[1]: *** [CMakeFiles/cmTryCompileExec233326013.dir/CheckSymbolExists.cxx.o] Error 1
  5302. -Makefile:118: recipe for target 'cmTryCompileExec233326013/fast' failed
  5303. -make: *** [cmTryCompileExec233326013/fast] Error 2
  5304. -
  5305. -File /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
  5306. -/* */
  5307. -#include <QtCore/qglobal.h>
  5308. -
  5309. -int main(int argc, char** argv)
  5310. -{
  5311. -  (void)argv;
  5312. -#ifndef Q_WS_MAC
  5313. -  return ((int*)(&Q_WS_MAC))[argc];
  5314. -#else
  5315. -  (void)argc;
  5316. -  return 0;
  5317. -#endif
  5318. -}
  5319. -
  5320. diff --git a/makefile2/CMakeFiles/CMakeOutput.log b/makefile2/CMakeFiles/CMakeOutput.log
  5321. deleted file mode 100644
  5322. index 0b1bcea1686ae406c3488f13cec057791098d78c..0000000000000000000000000000000000000000
  5323. --- a/makefile2/CMakeFiles/CMakeOutput.log
  5324. +++ /dev/null
  5325. @@ -1,620 +0,0 @@
  5326. -The system is: Linux - 3.16.0-23-generic - i686
  5327. -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
  5328. -Compiler: /usr/bin/cc
  5329. -Build flags:
  5330. -Id flags:
  5331. -
  5332. -The output was:
  5333. -0
  5334. -
  5335. -
  5336. -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
  5337. -
  5338. -The C compiler identification is GNU, found in "/home/anu/kalzium/makefile2/CMakeFiles/3.0.0/CompilerIdC/a.out"
  5339. -
  5340. -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
  5341. -Compiler: /usr/bin/c++
  5342. -Build flags:
  5343. -Id flags:
  5344. -
  5345. -The output was:
  5346. -0
  5347. -
  5348. -
  5349. -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
  5350. -
  5351. -The CXX compiler identification is GNU, found in "/home/anu/kalzium/makefile2/CMakeFiles/3.0.0/CompilerIdCXX/a.out"
  5352. -
  5353. -Determining if the C compiler works passed with the following output:
  5354. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5355. -
  5356. -Run Build Command:"/usr/bin/make" "cmTryCompileExec138948200/fast"
  5357. -/usr/bin/make -f CMakeFiles/cmTryCompileExec138948200.dir/build.make CMakeFiles/cmTryCompileExec138948200.dir/build
  5358. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5359. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5360. -Building C object CMakeFiles/cmTryCompileExec138948200.dir/testCCompiler.c.o
  5361. -/usr/bin/cc    -o CMakeFiles/cmTryCompileExec138948200.dir/testCCompiler.c.o   -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/testCCompiler.c
  5362. -Linking C executable cmTryCompileExec138948200
  5363. -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec138948200.dir/link.txt --verbose=1
  5364. -/usr/bin/cc       CMakeFiles/cmTryCompileExec138948200.dir/testCCompiler.c.o  -o cmTryCompileExec138948200 -rdynamic
  5365. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5366. -
  5367. -
  5368. -Detecting C compiler ABI info compiled with the following output:
  5369. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5370. -
  5371. -Run Build Command:"/usr/bin/make" "cmTryCompileExec2120854130/fast"
  5372. -/usr/bin/make -f CMakeFiles/cmTryCompileExec2120854130.dir/build.make CMakeFiles/cmTryCompileExec2120854130.dir/build
  5373. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5374. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5375. -Building C object CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o
  5376. -/usr/bin/cc    -o CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o   -c /usr/local/share/cmake-3.0/Modules/CMakeCCompilerABI.c
  5377. -Linking C executable cmTryCompileExec2120854130
  5378. -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2120854130.dir/link.txt --verbose=1
  5379. -/usr/bin/cc     -v CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o  -o cmTryCompileExec2120854130 -rdynamic  
  5380. -Using built-in specs.
  5381. -COLLECT_GCC=/usr/bin/cc
  5382. -COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper
  5383. -Target: i686-linux-gnu
  5384. -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
  5385. -Thread model: posix
  5386. -gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6)
  5387. -COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/
  5388. -LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../:/lib/:/usr/lib/
  5389. -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2120854130' '-rdynamic' '-mtune=generic' '-march=i686'
  5390. - /usr/lib/gcc/i686-linux-gnu/4.9/collect2 -plugin /usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccwLRZq3.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec2120854130 /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o /usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/4.9 -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.9/../../.. CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i686-linux-gnu/4.9/crtend.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o
  5391. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5392. -
  5393. -
  5394. -Parsed C implicit link information from above output:
  5395. -  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  5396. -  ignore line: [Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp]
  5397. -  ignore line: []
  5398. -  ignore line: [Run Build Command:"/usr/bin/make" "cmTryCompileExec2120854130/fast"]
  5399. -  ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec2120854130.dir/build.make CMakeFiles/cmTryCompileExec2120854130.dir/build]
  5400. -  ignore line: [make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp']
  5401. -  ignore line: [/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1]
  5402. -  ignore line: [Building C object CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o]
  5403. -  ignore line: [/usr/bin/cc    -o CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o   -c /usr/local/share/cmake-3.0/Modules/CMakeCCompilerABI.c]
  5404. -  ignore line: [Linking C executable cmTryCompileExec2120854130]
  5405. -  ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2120854130.dir/link.txt --verbose=1]
  5406. -  ignore line: [/usr/bin/cc     -v CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o  -o cmTryCompileExec2120854130 -rdynamic  ]
  5407. -  ignore line: [Using built-in specs.]
  5408. -  ignore line: [COLLECT_GCC=/usr/bin/cc]
  5409. -  ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper]
  5410. -  ignore line: [Target: i686-linux-gnu]
  5411. -  ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu]
  5412. -  ignore line: [Thread model: posix]
  5413. -  ignore line: [gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6) ]
  5414. -  ignore line: [COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/]
  5415. -  ignore line: [LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../:/lib/:/usr/lib/]
  5416. -  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2120854130' '-rdynamic' '-mtune=generic' '-march=i686']
  5417. -  link line: [ /usr/lib/gcc/i686-linux-gnu/4.9/collect2 -plugin /usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccwLRZq3.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec2120854130 /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o /usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/4.9 -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.9/../../.. CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i686-linux-gnu/4.9/crtend.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o]
  5418. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/collect2] ==> ignore
  5419. -    arg [-plugin] ==> ignore
  5420. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so] ==> ignore
  5421. -    arg [-plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper] ==> ignore
  5422. -    arg [-plugin-opt=-fresolution=/tmp/ccwLRZq3.res] ==> ignore
  5423. -    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
  5424. -    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
  5425. -    arg [-plugin-opt=-pass-through=-lc] ==> ignore
  5426. -    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
  5427. -    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
  5428. -    arg [--sysroot=/] ==> ignore
  5429. -    arg [--build-id] ==> ignore
  5430. -    arg [--eh-frame-hdr] ==> ignore
  5431. -    arg [-m] ==> ignore
  5432. -    arg [elf_i386] ==> ignore
  5433. -    arg [--hash-style=gnu] ==> ignore
  5434. -    arg [--as-needed] ==> ignore
  5435. -    arg [-export-dynamic] ==> ignore
  5436. -    arg [-dynamic-linker] ==> ignore
  5437. -    arg [/lib/ld-linux.so.2] ==> ignore
  5438. -    arg [-zrelro] ==> ignore
  5439. -    arg [-o] ==> ignore
  5440. -    arg [cmTryCompileExec2120854130] ==> ignore
  5441. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o] ==> ignore
  5442. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o] ==> ignore
  5443. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o] ==> ignore
  5444. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9]
  5445. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu]
  5446. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib]
  5447. -    arg [-L/lib/i386-linux-gnu] ==> dir [/lib/i386-linux-gnu]
  5448. -    arg [-L/lib/../lib] ==> dir [/lib/../lib]
  5449. -    arg [-L/usr/lib/i386-linux-gnu] ==> dir [/usr/lib/i386-linux-gnu]
  5450. -    arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
  5451. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../..] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../..]
  5452. -    arg [CMakeFiles/cmTryCompileExec2120854130.dir/CMakeCCompilerABI.c.o] ==> ignore
  5453. -    arg [-lgcc] ==> lib [gcc]
  5454. -    arg [--as-needed] ==> ignore
  5455. -    arg [-lgcc_s] ==> lib [gcc_s]
  5456. -    arg [--no-as-needed] ==> ignore
  5457. -    arg [-lc] ==> lib [c]
  5458. -    arg [-lgcc] ==> lib [gcc]
  5459. -    arg [--as-needed] ==> ignore
  5460. -    arg [-lgcc_s] ==> lib [gcc_s]
  5461. -    arg [--no-as-needed] ==> ignore
  5462. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/crtend.o] ==> ignore
  5463. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o] ==> ignore
  5464. -  remove lib [gcc]
  5465. -  remove lib [gcc_s]
  5466. -  remove lib [gcc]
  5467. -  remove lib [gcc_s]
  5468. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9] ==> [/usr/lib/gcc/i686-linux-gnu/4.9]
  5469. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
  5470. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib] ==> [/usr/lib]
  5471. -  collapse library dir [/lib/i386-linux-gnu] ==> [/lib/i386-linux-gnu]
  5472. -  collapse library dir [/lib/../lib] ==> [/lib]
  5473. -  collapse library dir [/usr/lib/i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
  5474. -  collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
  5475. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../..] ==> [/usr/lib]
  5476. -  implicit libs: [c]
  5477. -  implicit dirs: [/usr/lib/gcc/i686-linux-gnu/4.9;/usr/lib/i386-linux-gnu;/usr/lib;/lib/i386-linux-gnu;/lib]
  5478. -  implicit fwks: []
  5479. -
  5480. -
  5481. -Determining if the CXX compiler works passed with the following output:
  5482. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5483. -
  5484. -Run Build Command:"/usr/bin/make" "cmTryCompileExec1395985044/fast"
  5485. -/usr/bin/make -f CMakeFiles/cmTryCompileExec1395985044.dir/build.make CMakeFiles/cmTryCompileExec1395985044.dir/build
  5486. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5487. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5488. -Building CXX object CMakeFiles/cmTryCompileExec1395985044.dir/testCXXCompiler.cxx.o
  5489. -/usr/bin/c++     -o CMakeFiles/cmTryCompileExec1395985044.dir/testCXXCompiler.cxx.o -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
  5490. -Linking CXX executable cmTryCompileExec1395985044
  5491. -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1395985044.dir/link.txt --verbose=1
  5492. -/usr/bin/c++        CMakeFiles/cmTryCompileExec1395985044.dir/testCXXCompiler.cxx.o  -o cmTryCompileExec1395985044 -rdynamic
  5493. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5494. -
  5495. -
  5496. -Detecting CXX compiler ABI info compiled with the following output:
  5497. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5498. -
  5499. -Run Build Command:"/usr/bin/make" "cmTryCompileExec3477436625/fast"
  5500. -/usr/bin/make -f CMakeFiles/cmTryCompileExec3477436625.dir/build.make CMakeFiles/cmTryCompileExec3477436625.dir/build
  5501. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5502. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5503. -Building CXX object CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o
  5504. -/usr/bin/c++     -o CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.0/Modules/CMakeCXXCompilerABI.cpp
  5505. -Linking CXX executable cmTryCompileExec3477436625
  5506. -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3477436625.dir/link.txt --verbose=1
  5507. -/usr/bin/c++      -v CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o  -o cmTryCompileExec3477436625 -rdynamic  
  5508. -Using built-in specs.
  5509. -COLLECT_GCC=/usr/bin/c++
  5510. -COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper
  5511. -Target: i686-linux-gnu
  5512. -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
  5513. -Thread model: posix
  5514. -gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6)
  5515. -COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/
  5516. -LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../:/lib/:/usr/lib/
  5517. -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3477436625' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=i686'
  5518. - /usr/lib/gcc/i686-linux-gnu/4.9/collect2 -plugin /usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper -plugin-opt=-fresolution=/tmp/cce8orHp.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec3477436625 /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o /usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/4.9 -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.9/../../.. CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/i686-linux-gnu/4.9/crtend.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o
  5519. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5520. -
  5521. -
  5522. -Parsed CXX implicit link information from above output:
  5523. -  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  5524. -  ignore line: [Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp]
  5525. -  ignore line: []
  5526. -  ignore line: [Run Build Command:"/usr/bin/make" "cmTryCompileExec3477436625/fast"]
  5527. -  ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec3477436625.dir/build.make CMakeFiles/cmTryCompileExec3477436625.dir/build]
  5528. -  ignore line: [make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp']
  5529. -  ignore line: [/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1]
  5530. -  ignore line: [Building CXX object CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o]
  5531. -  ignore line: [/usr/bin/c++     -o CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.0/Modules/CMakeCXXCompilerABI.cpp]
  5532. -  ignore line: [Linking CXX executable cmTryCompileExec3477436625]
  5533. -  ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3477436625.dir/link.txt --verbose=1]
  5534. -  ignore line: [/usr/bin/c++      -v CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o  -o cmTryCompileExec3477436625 -rdynamic  ]
  5535. -  ignore line: [Using built-in specs.]
  5536. -  ignore line: [COLLECT_GCC=/usr/bin/c++]
  5537. -  ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper]
  5538. -  ignore line: [Target: i686-linux-gnu]
  5539. -  ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu]
  5540. -  ignore line: [Thread model: posix]
  5541. -  ignore line: [gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6) ]
  5542. -  ignore line: [COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/]
  5543. -  ignore line: [LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../:/lib/:/usr/lib/]
  5544. -  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3477436625' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=i686']
  5545. -  link line: [ /usr/lib/gcc/i686-linux-gnu/4.9/collect2 -plugin /usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper -plugin-opt=-fresolution=/tmp/cce8orHp.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec3477436625 /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o /usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/4.9 -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.9/../../.. CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/i686-linux-gnu/4.9/crtend.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o]
  5546. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/collect2] ==> ignore
  5547. -    arg [-plugin] ==> ignore
  5548. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so] ==> ignore
  5549. -    arg [-plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper] ==> ignore
  5550. -    arg [-plugin-opt=-fresolution=/tmp/cce8orHp.res] ==> ignore
  5551. -    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
  5552. -    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
  5553. -    arg [-plugin-opt=-pass-through=-lc] ==> ignore
  5554. -    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
  5555. -    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
  5556. -    arg [--sysroot=/] ==> ignore
  5557. -    arg [--build-id] ==> ignore
  5558. -    arg [--eh-frame-hdr] ==> ignore
  5559. -    arg [-m] ==> ignore
  5560. -    arg [elf_i386] ==> ignore
  5561. -    arg [--hash-style=gnu] ==> ignore
  5562. -    arg [--as-needed] ==> ignore
  5563. -    arg [-export-dynamic] ==> ignore
  5564. -    arg [-dynamic-linker] ==> ignore
  5565. -    arg [/lib/ld-linux.so.2] ==> ignore
  5566. -    arg [-zrelro] ==> ignore
  5567. -    arg [-o] ==> ignore
  5568. -    arg [cmTryCompileExec3477436625] ==> ignore
  5569. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o] ==> ignore
  5570. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o] ==> ignore
  5571. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o] ==> ignore
  5572. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9]
  5573. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu]
  5574. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib]
  5575. -    arg [-L/lib/i386-linux-gnu] ==> dir [/lib/i386-linux-gnu]
  5576. -    arg [-L/lib/../lib] ==> dir [/lib/../lib]
  5577. -    arg [-L/usr/lib/i386-linux-gnu] ==> dir [/usr/lib/i386-linux-gnu]
  5578. -    arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
  5579. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../..] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../..]
  5580. -    arg [CMakeFiles/cmTryCompileExec3477436625.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
  5581. -    arg [-lstdc++] ==> lib [stdc++]
  5582. -    arg [-lm] ==> lib [m]
  5583. -    arg [-lgcc_s] ==> lib [gcc_s]
  5584. -    arg [-lgcc] ==> lib [gcc]
  5585. -    arg [-lc] ==> lib [c]
  5586. -    arg [-lgcc_s] ==> lib [gcc_s]
  5587. -    arg [-lgcc] ==> lib [gcc]
  5588. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/crtend.o] ==> ignore
  5589. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o] ==> ignore
  5590. -  remove lib [gcc_s]
  5591. -  remove lib [gcc]
  5592. -  remove lib [gcc_s]
  5593. -  remove lib [gcc]
  5594. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9] ==> [/usr/lib/gcc/i686-linux-gnu/4.9]
  5595. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
  5596. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib] ==> [/usr/lib]
  5597. -  collapse library dir [/lib/i386-linux-gnu] ==> [/lib/i386-linux-gnu]
  5598. -  collapse library dir [/lib/../lib] ==> [/lib]
  5599. -  collapse library dir [/usr/lib/i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
  5600. -  collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
  5601. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../..] ==> [/usr/lib]
  5602. -  implicit libs: [stdc++;m;c]
  5603. -  implicit dirs: [/usr/lib/gcc/i686-linux-gnu/4.9;/usr/lib/i386-linux-gnu;/usr/lib;/lib/i386-linux-gnu;/lib]
  5604. -  implicit fwks: []
  5605. -
  5606. -
  5607. -Determining if the __GLIBC__ exist passed with the following output:
  5608. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5609. -
  5610. -Run Build Command:"/usr/bin/make" "cmTryCompileExec1407565213/fast"
  5611. -/usr/bin/make -f CMakeFiles/cmTryCompileExec1407565213.dir/build.make CMakeFiles/cmTryCompileExec1407565213.dir/build
  5612. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5613. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5614. -Building C object CMakeFiles/cmTryCompileExec1407565213.dir/CheckSymbolExists.c.o
  5615. -/usr/bin/cc    -o CMakeFiles/cmTryCompileExec1407565213.dir/CheckSymbolExists.c.o   -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.c
  5616. -Linking C executable cmTryCompileExec1407565213
  5617. -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1407565213.dir/link.txt --verbose=1
  5618. -/usr/bin/cc       CMakeFiles/cmTryCompileExec1407565213.dir/CheckSymbolExists.c.o  -o cmTryCompileExec1407565213 -rdynamic
  5619. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5620. -
  5621. -File /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
  5622. -/* */
  5623. -#include <stdlib.h>
  5624. -
  5625. -int main(int argc, char** argv)
  5626. -{
  5627. -  (void)argv;
  5628. -#ifndef __GLIBC__
  5629. -  return ((int*)(&__GLIBC__))[argc];
  5630. -#else
  5631. -  (void)argc;
  5632. -  return 0;
  5633. -#endif
  5634. -}
  5635. -
  5636. -Determining if the Q_WS_X11 exist passed with the following output:
  5637. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5638. -
  5639. -Run Build Command:"/usr/bin/make" "cmTryCompileExec1248016090/fast"
  5640. -/usr/bin/make -f CMakeFiles/cmTryCompileExec1248016090.dir/build.make CMakeFiles/cmTryCompileExec1248016090.dir/build
  5641. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5642. -/usr/local/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5643. -Building CXX object CMakeFiles/cmTryCompileExec1248016090.dir/CheckSymbolExists.cxx.o
  5644. -/usr/bin/c++   -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -std=c++0x -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type  -I/usr/include/qt4    -o CMakeFiles/cmTryCompileExec1248016090.dir/CheckSymbolExists.cxx.o -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
  5645. -Linking CXX executable cmTryCompileExec1248016090
  5646. -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1248016090.dir/link.txt --verbose=1
  5647. -/usr/bin/c++    -std=c++0x -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wpointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type     CMakeFiles/cmTryCompileExec1248016090.dir/CheckSymbolExists.cxx.o  -o cmTryCompileExec1248016090 -rdynamic
  5648. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5649. -
  5650. -File /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
  5651. -/* */
  5652. -#include <QtCore/qglobal.h>
  5653. -
  5654. -int main(int argc, char** argv)
  5655. -{
  5656. -  (void)argv;
  5657. -#ifndef Q_WS_X11
  5658. -  return ((int*)(&Q_WS_X11))[argc];
  5659. -#else
  5660. -  (void)argc;
  5661. -  return 0;
  5662. -#endif
  5663. -}
  5664. -
  5665. -The system is: Linux - 3.16.0-23-generic - i686
  5666. -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
  5667. -Compiler: /usr/bin/cc
  5668. -Build flags:
  5669. -Id flags:
  5670. -
  5671. -The output was:
  5672. -0
  5673. -
  5674. -
  5675. -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
  5676. -
  5677. -The C compiler identification is GNU, found in "/home/anu/kalzium/makefile2/CMakeFiles/2.8.12.2/CompilerIdC/a.out"
  5678. -
  5679. -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
  5680. -Compiler: /usr/bin/c++
  5681. -Build flags:
  5682. -Id flags:
  5683. -
  5684. -The output was:
  5685. -0
  5686. -
  5687. -
  5688. -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
  5689. -
  5690. -The CXX compiler identification is GNU, found in "/home/anu/kalzium/makefile2/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out"
  5691. -
  5692. -Determining if the C compiler works passed with the following output:
  5693. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5694. -
  5695. -Run Build Command:/usr/bin/make "cmTryCompileExec3396071791/fast"
  5696. -/usr/bin/make -f CMakeFiles/cmTryCompileExec3396071791.dir/build.make CMakeFiles/cmTryCompileExec3396071791.dir/build
  5697. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5698. -/usr/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5699. -Building C object CMakeFiles/cmTryCompileExec3396071791.dir/testCCompiler.c.o
  5700. -/usr/bin/cc    -o CMakeFiles/cmTryCompileExec3396071791.dir/testCCompiler.c.o   -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/testCCompiler.c
  5701. -Linking C executable cmTryCompileExec3396071791
  5702. -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3396071791.dir/link.txt --verbose=1
  5703. -/usr/bin/cc       CMakeFiles/cmTryCompileExec3396071791.dir/testCCompiler.c.o  -o cmTryCompileExec3396071791 -rdynamic
  5704. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5705. -
  5706. -
  5707. -Detecting C compiler ABI info compiled with the following output:
  5708. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5709. -
  5710. -Run Build Command:/usr/bin/make "cmTryCompileExec3782259292/fast"
  5711. -/usr/bin/make -f CMakeFiles/cmTryCompileExec3782259292.dir/build.make CMakeFiles/cmTryCompileExec3782259292.dir/build
  5712. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5713. -/usr/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5714. -Building C object CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o
  5715. -/usr/bin/cc    -o CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o   -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c
  5716. -Linking C executable cmTryCompileExec3782259292
  5717. -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3782259292.dir/link.txt --verbose=1
  5718. -/usr/bin/cc     -v CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o  -o cmTryCompileExec3782259292 -rdynamic  
  5719. -Using built-in specs.
  5720. -COLLECT_GCC=/usr/bin/cc
  5721. -COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper
  5722. -Target: i686-linux-gnu
  5723. -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
  5724. -Thread model: posix
  5725. -gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6)
  5726. -COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/
  5727. -LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../:/lib/:/usr/lib/
  5728. -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3782259292' '-rdynamic' '-mtune=generic' '-march=i686'
  5729. - /usr/lib/gcc/i686-linux-gnu/4.9/collect2 -plugin /usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccPZ6v3O.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec3782259292 /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o /usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/4.9 -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.9/../../.. CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i686-linux-gnu/4.9/crtend.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o
  5730. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5731. -
  5732. -
  5733. -Parsed C implicit link information from above output:
  5734. -  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  5735. -  ignore line: [Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp]
  5736. -  ignore line: []
  5737. -  ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec3782259292/fast"]
  5738. -  ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec3782259292.dir/build.make CMakeFiles/cmTryCompileExec3782259292.dir/build]
  5739. -  ignore line: [make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp']
  5740. -  ignore line: [/usr/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1]
  5741. -  ignore line: [Building C object CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o]
  5742. -  ignore line: [/usr/bin/cc    -o CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o   -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c]
  5743. -  ignore line: [Linking C executable cmTryCompileExec3782259292]
  5744. -  ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3782259292.dir/link.txt --verbose=1]
  5745. -  ignore line: [/usr/bin/cc     -v CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o  -o cmTryCompileExec3782259292 -rdynamic  ]
  5746. -  ignore line: [Using built-in specs.]
  5747. -  ignore line: [COLLECT_GCC=/usr/bin/cc]
  5748. -  ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper]
  5749. -  ignore line: [Target: i686-linux-gnu]
  5750. -  ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu]
  5751. -  ignore line: [Thread model: posix]
  5752. -  ignore line: [gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6) ]
  5753. -  ignore line: [COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/]
  5754. -  ignore line: [LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../:/lib/:/usr/lib/]
  5755. -  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3782259292' '-rdynamic' '-mtune=generic' '-march=i686']
  5756. -  link line: [ /usr/lib/gcc/i686-linux-gnu/4.9/collect2 -plugin /usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccPZ6v3O.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec3782259292 /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o /usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/4.9 -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.9/../../.. CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/i686-linux-gnu/4.9/crtend.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o]
  5757. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/collect2] ==> ignore
  5758. -    arg [-plugin] ==> ignore
  5759. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so] ==> ignore
  5760. -    arg [-plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper] ==> ignore
  5761. -    arg [-plugin-opt=-fresolution=/tmp/ccPZ6v3O.res] ==> ignore
  5762. -    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
  5763. -    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
  5764. -    arg [-plugin-opt=-pass-through=-lc] ==> ignore
  5765. -    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
  5766. -    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
  5767. -    arg [--sysroot=/] ==> ignore
  5768. -    arg [--build-id] ==> ignore
  5769. -    arg [--eh-frame-hdr] ==> ignore
  5770. -    arg [-m] ==> ignore
  5771. -    arg [elf_i386] ==> ignore
  5772. -    arg [--hash-style=gnu] ==> ignore
  5773. -    arg [--as-needed] ==> ignore
  5774. -    arg [-export-dynamic] ==> ignore
  5775. -    arg [-dynamic-linker] ==> ignore
  5776. -    arg [/lib/ld-linux.so.2] ==> ignore
  5777. -    arg [-zrelro] ==> ignore
  5778. -    arg [-o] ==> ignore
  5779. -    arg [cmTryCompileExec3782259292] ==> ignore
  5780. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o] ==> ignore
  5781. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o] ==> ignore
  5782. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o] ==> ignore
  5783. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9]
  5784. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu]
  5785. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib]
  5786. -    arg [-L/lib/i386-linux-gnu] ==> dir [/lib/i386-linux-gnu]
  5787. -    arg [-L/lib/../lib] ==> dir [/lib/../lib]
  5788. -    arg [-L/usr/lib/i386-linux-gnu] ==> dir [/usr/lib/i386-linux-gnu]
  5789. -    arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
  5790. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../..] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../..]
  5791. -    arg [CMakeFiles/cmTryCompileExec3782259292.dir/CMakeCCompilerABI.c.o] ==> ignore
  5792. -    arg [-lgcc] ==> lib [gcc]
  5793. -    arg [--as-needed] ==> ignore
  5794. -    arg [-lgcc_s] ==> lib [gcc_s]
  5795. -    arg [--no-as-needed] ==> ignore
  5796. -    arg [-lc] ==> lib [c]
  5797. -    arg [-lgcc] ==> lib [gcc]
  5798. -    arg [--as-needed] ==> ignore
  5799. -    arg [-lgcc_s] ==> lib [gcc_s]
  5800. -    arg [--no-as-needed] ==> ignore
  5801. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/crtend.o] ==> ignore
  5802. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o] ==> ignore
  5803. -  remove lib [gcc]
  5804. -  remove lib [gcc_s]
  5805. -  remove lib [gcc]
  5806. -  remove lib [gcc_s]
  5807. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9] ==> [/usr/lib/gcc/i686-linux-gnu/4.9]
  5808. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
  5809. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib] ==> [/usr/lib]
  5810. -  collapse library dir [/lib/i386-linux-gnu] ==> [/lib/i386-linux-gnu]
  5811. -  collapse library dir [/lib/../lib] ==> [/lib]
  5812. -  collapse library dir [/usr/lib/i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
  5813. -  collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
  5814. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../..] ==> [/usr/lib]
  5815. -  implicit libs: [c]
  5816. -  implicit dirs: [/usr/lib/gcc/i686-linux-gnu/4.9;/usr/lib/i386-linux-gnu;/usr/lib;/lib/i386-linux-gnu;/lib]
  5817. -  implicit fwks: []
  5818. -
  5819. -
  5820. -Determining if the CXX compiler works passed with the following output:
  5821. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5822. -
  5823. -Run Build Command:/usr/bin/make "cmTryCompileExec2338216448/fast"
  5824. -/usr/bin/make -f CMakeFiles/cmTryCompileExec2338216448.dir/build.make CMakeFiles/cmTryCompileExec2338216448.dir/build
  5825. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5826. -/usr/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5827. -Building CXX object CMakeFiles/cmTryCompileExec2338216448.dir/testCXXCompiler.cxx.o
  5828. -/usr/bin/c++     -o CMakeFiles/cmTryCompileExec2338216448.dir/testCXXCompiler.cxx.o -c /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
  5829. -Linking CXX executable cmTryCompileExec2338216448
  5830. -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2338216448.dir/link.txt --verbose=1
  5831. -/usr/bin/c++        CMakeFiles/cmTryCompileExec2338216448.dir/testCXXCompiler.cxx.o  -o cmTryCompileExec2338216448 -rdynamic
  5832. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5833. -
  5834. -
  5835. -Detecting CXX compiler ABI info compiled with the following output:
  5836. -Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp
  5837. -
  5838. -Run Build Command:/usr/bin/make "cmTryCompileExec927440413/fast"
  5839. -/usr/bin/make -f CMakeFiles/cmTryCompileExec927440413.dir/build.make CMakeFiles/cmTryCompileExec927440413.dir/build
  5840. -make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5841. -/usr/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1
  5842. -Building CXX object CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o
  5843. -/usr/bin/c++     -o CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp
  5844. -Linking CXX executable cmTryCompileExec927440413
  5845. -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec927440413.dir/link.txt --verbose=1
  5846. -/usr/bin/c++      -v CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o  -o cmTryCompileExec927440413 -rdynamic  
  5847. -Using built-in specs.
  5848. -COLLECT_GCC=/usr/bin/c++
  5849. -COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper
  5850. -Target: i686-linux-gnu
  5851. -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
  5852. -Thread model: posix
  5853. -gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6)
  5854. -COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/
  5855. -LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../:/lib/:/usr/lib/
  5856. -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec927440413' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=i686'
  5857. - /usr/lib/gcc/i686-linux-gnu/4.9/collect2 -plugin /usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccHrMrEF.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec927440413 /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o /usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/4.9 -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.9/../../.. CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/i686-linux-gnu/4.9/crtend.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o
  5858. -make[1]: Leaving directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp'
  5859. -
  5860. -
  5861. -Parsed CXX implicit link information from above output:
  5862. -  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  5863. -  ignore line: [Change Dir: /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp]
  5864. -  ignore line: []
  5865. -  ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec927440413/fast"]
  5866. -  ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec927440413.dir/build.make CMakeFiles/cmTryCompileExec927440413.dir/build]
  5867. -  ignore line: [make[1]: Entering directory '/home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp']
  5868. -  ignore line: [/usr/bin/cmake -E cmake_progress_report /home/anu/kalzium/makefile2/CMakeFiles/CMakeTmp/CMakeFiles 1]
  5869. -  ignore line: [Building CXX object CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o]
  5870. -  ignore line: [/usr/bin/c++     -o CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp]
  5871. -  ignore line: [Linking CXX executable cmTryCompileExec927440413]
  5872. -  ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec927440413.dir/link.txt --verbose=1]
  5873. -  ignore line: [/usr/bin/c++      -v CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o  -o cmTryCompileExec927440413 -rdynamic  ]
  5874. -  ignore line: [Using built-in specs.]
  5875. -  ignore line: [COLLECT_GCC=/usr/bin/c++]
  5876. -  ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper]
  5877. -  ignore line: [Target: i686-linux-gnu]
  5878. -  ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.9.1-16ubuntu6' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu]
  5879. -  ignore line: [Thread model: posix]
  5880. -  ignore line: [gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6) ]
  5881. -  ignore line: [COMPILER_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/]
  5882. -  ignore line: [LIBRARY_PATH=/usr/lib/gcc/i686-linux-gnu/4.9/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib/:/lib/i386-linux-gnu/:/lib/../lib/:/usr/lib/i386-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/i686-linux-gnu/4.9/../../../:/lib/:/usr/lib/]
  5883. -  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec927440413' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=i686']
  5884. -  link line: [ /usr/lib/gcc/i686-linux-gnu/4.9/collect2 -plugin /usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccHrMrEF.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec927440413 /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o /usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o -L/usr/lib/gcc/i686-linux-gnu/4.9 -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.9/../../.. CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/i686-linux-gnu/4.9/crtend.o /usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o]
  5885. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/collect2] ==> ignore
  5886. -    arg [-plugin] ==> ignore
  5887. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/liblto_plugin.so] ==> ignore
  5888. -    arg [-plugin-opt=/usr/lib/gcc/i686-linux-gnu/4.9/lto-wrapper] ==> ignore
  5889. -    arg [-plugin-opt=-fresolution=/tmp/ccHrMrEF.res] ==> ignore
  5890. -    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
  5891. -    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
  5892. -    arg [-plugin-opt=-pass-through=-lc] ==> ignore
  5893. -    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
  5894. -    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
  5895. -    arg [--sysroot=/] ==> ignore
  5896. -    arg [--build-id] ==> ignore
  5897. -    arg [--eh-frame-hdr] ==> ignore
  5898. -    arg [-m] ==> ignore
  5899. -    arg [elf_i386] ==> ignore
  5900. -    arg [--hash-style=gnu] ==> ignore
  5901. -    arg [--as-needed] ==> ignore
  5902. -    arg [-export-dynamic] ==> ignore
  5903. -    arg [-dynamic-linker] ==> ignore
  5904. -    arg [/lib/ld-linux.so.2] ==> ignore
  5905. -    arg [-zrelro] ==> ignore
  5906. -    arg [-o] ==> ignore
  5907. -    arg [cmTryCompileExec927440413] ==> ignore
  5908. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o] ==> ignore
  5909. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crti.o] ==> ignore
  5910. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/crtbegin.o] ==> ignore
  5911. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9]
  5912. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu]
  5913. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib]
  5914. -    arg [-L/lib/i386-linux-gnu] ==> dir [/lib/i386-linux-gnu]
  5915. -    arg [-L/lib/../lib] ==> dir [/lib/../lib]
  5916. -    arg [-L/usr/lib/i386-linux-gnu] ==> dir [/usr/lib/i386-linux-gnu]
  5917. -    arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
  5918. -    arg [-L/usr/lib/gcc/i686-linux-gnu/4.9/../../..] ==> dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../..]
  5919. -    arg [CMakeFiles/cmTryCompileExec927440413.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
  5920. -    arg [-lstdc++] ==> lib [stdc++]
  5921. -    arg [-lm] ==> lib [m]
  5922. -    arg [-lgcc_s] ==> lib [gcc_s]
  5923. -    arg [-lgcc] ==> lib [gcc]
  5924. -    arg [-lc] ==> lib [c]
  5925. -    arg [-lgcc_s] ==> lib [gcc_s]
  5926. -    arg [-lgcc] ==> lib [gcc]
  5927. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/crtend.o] ==> ignore
  5928. -    arg [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o] ==> ignore
  5929. -  remove lib [gcc_s]
  5930. -  remove lib [gcc]
  5931. -  remove lib [gcc_s]
  5932. -  remove lib [gcc]
  5933. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9] ==> [/usr/lib/gcc/i686-linux-gnu/4.9]
  5934. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
  5935. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../../../lib] ==> [/usr/lib]
  5936. -  collapse library dir [/lib/i386-linux-gnu] ==> [/lib/i386-linux-gnu]
  5937. -  collapse library dir [/lib/../lib] ==> [/lib]
  5938. -  collapse library dir [/usr/lib/i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
  5939. -  collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
  5940. -  collapse library dir [/usr/lib/gcc/i686-linux-gnu/4.9/../../..] ==> [/usr/lib]
  5941. -  implicit libs: [stdc++;m;c]
  5942. -  implicit dirs: [/usr/lib/gcc/i686-linux-gnu/4.9;/usr/lib/i386-linux-gnu;/usr/lib;/lib/i386-linux-gnu;/lib]
  5943. -  implicit fwks: []
  5944. -
  5945. -
  5946. diff --git a/makefile2/CMakeFiles/Makefile.cmake b/makefile2/CMakeFiles/Makefile.cmake
  5947. deleted file mode 100644
  5948. index 143b4c8ba932504135c155cc6231b979e1357c7d..0000000000000000000000000000000000000000
  5949. --- a/makefile2/CMakeFiles/Makefile.cmake
  5950. +++ /dev/null
  5951. @@ -1,184 +0,0 @@
  5952. -# CMAKE generated file: DO NOT EDIT!
  5953. -# Generated by "Unix Makefiles" Generator, CMake Version 3.0
  5954. -
  5955. -# The generator used is:
  5956. -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
  5957. -
  5958. -# The top level Makefile was generated from the following files:
  5959. -set(CMAKE_MAKEFILE_DEPENDS
  5960. -  "CMakeCache.txt"
  5961. -  "../CMakeLists.txt"
  5962. -  "../KalziumConfigureChecks.cmake"
  5963. -  "../cmake/modules/FindEigen3.cmake"
  5964. -  "../cmake/modules/FindLibfacile.cmake"
  5965. -  "../cmake/modules/FindOCaml.cmake"
  5966. -  "../cmake/modules/FindOpenBabel2.cmake"
  5967. -  "../compoundviewer/CMakeLists.txt"
  5968. -  "../config-kalzium.h.cmake"
  5969. -  "../data/CMakeLists.txt"
  5970. -  "../data/hazardsymbols/CMakeLists.txt"
  5971. -  "../data/htmlview/CMakeLists.txt"
  5972. -  "../data/icons/CMakeLists.txt"
  5973. -  "../data/iconsets/CMakeLists.txt"
  5974. -  "../data/iconsets/school/CMakeLists.txt"
  5975. -  "../data/latticeicons/CMakeLists.txt"
  5976. -  "../data/maps/CMakeLists.txt"
  5977. -  "../data/molecules/CMakeLists.txt"
  5978. -  "../data/toolpics/CMakeLists.txt"
  5979. -  "../doc/CMakeLists.txt"
  5980. -  "../libscience/CMakeLists.txt"
  5981. -  "../libscience/data/CMakeLists.txt"
  5982. -  "../libscience/tests/CMakeLists.txt"
  5983. -  "CMakeFiles/3.0.0/CMakeCCompiler.cmake"
  5984. -  "CMakeFiles/3.0.0/CMakeCXXCompiler.cmake"
  5985. -  "CMakeFiles/3.0.0/CMakeSystem.cmake"
  5986. -  "../plasmoid/CMakeLists.txt"
  5987. -  "../plasmoid/applet/CMakeLists.txt"
  5988. -  "../plasmoid/applet/concentrationPlasmoid/CMakeLists.txt"
  5989. -  "../plasmoid/applet/didyouknow/CMakeLists.txt"
  5990. -  "../plasmoid/applet/gasPlasmoid/CMakeLists.txt"
  5991. -  "../plasmoid/applet/nuclearPlasmoid/CMakeLists.txt"
  5992. -  "../plasmoid/applet/psePlasmoid/CMakeLists.txt"
  5993. -  "../plasmoid/engine/CMakeLists.txt"
  5994. -  "../qml/CMakeLists.txt"
  5995. -  "../src/CMakeLists.txt"
  5996. -  "../src/CMakeOCamlInstructions.cmake"
  5997. -  "/usr/lib/avogadro/1_1/AvogadroUse.cmake"
  5998. -  "/usr/lib/avogadro/1_1/cmake/FindEigen2.cmake"
  5999. -  "/usr/lib/avogadro/1_1/cmake/FindGLEW.cmake"
  6000. -  "/usr/lib/avogadro/AvogadroConfig.cmake"
  6001. -  "/usr/lib/avogadro/AvogadroConfigVersion.cmake"
  6002. -  "/usr/lib/i386-linux-gnu/cmake/KF5Archive/KF5ArchiveConfig.cmake"
  6003. -  "/usr/lib/i386-linux-gnu/cmake/KF5Archive/KF5ArchiveConfigVersion.cmake"
  6004. -  "/usr/lib/i386-linux-gnu/cmake/KF5Archive/KF5ArchiveTargets-debian.cmake"
  6005. -  "/usr/lib/i386-linux-gnu/cmake/KF5Archive/KF5ArchiveTargets.cmake"
  6006. -  "/usr/lib/i386-linux-gnu/cmake/KF5Config/KF5ConfigConfig.cmake"
  6007. -  "/usr/lib/i386-linux-gnu/cmake/KF5Config/KF5ConfigConfigVersion.cmake"
  6008. -  "/usr/lib/i386-linux-gnu/cmake/KF5Config/KF5ConfigMacros.cmake"
  6009. -  "/usr/lib/i386-linux-gnu/cmake/KF5Config/KF5ConfigTargets-debian.cmake"
  6010. -  "/usr/lib/i386-linux-gnu/cmake/KF5Config/KF5ConfigTargets.cmake"
  6011. -  "/usr/lib/i386-linux-gnu/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake"
  6012. -  "/usr/lib/i386-linux-gnu/cmake/KF5CoreAddons/KF5CoreAddonsConfigVersion.cmake"
  6013. -  "/usr/lib/i386-linux-gnu/cmake/KF5CoreAddons/KF5CoreAddonsMacros.cmake"
  6014. -  "/usr/lib/i386-linux-gnu/cmake/KF5CoreAddons/KF5CoreAddonsTargets-debian.cmake"
  6015. -  "/usr/lib/i386-linux-gnu/cmake/KF5CoreAddons/KF5CoreAddonsTargets.cmake"
  6016. -  "/usr/lib/i386-linux-gnu/cmake/KF5DocTools/KF5DocToolsConfig.cmake"
  6017. -  "/usr/lib/i386-linux-gnu/cmake/KF5DocTools/KF5DocToolsConfigVersion.cmake"
  6018. -  "/usr/lib/i386-linux-gnu/cmake/KF5DocTools/KF5DocToolsMacros.cmake"
  6019. -  "/usr/lib/i386-linux-gnu/cmake/KF5DocTools/KF5DocToolsTargets-debian.cmake"
  6020. -  "/usr/lib/i386-linux-gnu/cmake/KF5DocTools/KF5DocToolsTargets.cmake"
  6021. -  "/usr/lib/i386-linux-gnu/cmake/KF5Solid/KF5SolidConfig.cmake"
  6022. -  "/usr/lib/i386-linux-gnu/cmake/KF5Solid/KF5SolidConfigVersion.cmake"
  6023. -  "/usr/lib/i386-linux-gnu/cmake/KF5Solid/KF5SolidTargets-debian.cmake"
  6024. -  "/usr/lib/i386-linux-gnu/cmake/KF5Solid/KF5SolidTargets.cmake"
  6025. -  "/usr/lib/i386-linux-gnu/cmake/Qt5/Qt5Config.cmake"
  6026. -  "/usr/lib/i386-linux-gnu/cmake/Qt5/Qt5ConfigVersion.cmake"
  6027. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Core/Qt5CoreConfig.cmake"
  6028. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Core/Qt5CoreConfigExtras.cmake"
  6029. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake"
  6030. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Core/Qt5CoreConfigVersion.cmake"
  6031. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Core/Qt5CoreMacros.cmake"
  6032. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Gui/Qt5GuiConfig.cmake"
  6033. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake"
  6034. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake"
  6035. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake"
  6036. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake"
  6037. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake"
  6038. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake"
  6039. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Xml/Qt5XmlConfig.cmake"
  6040. -  "/usr/lib/i386-linux-gnu/cmake/Qt5Xml/Qt5XmlConfigVersion.cmake"
  6041. -  "/usr/local/share/cmake-3.0/Modules/CMakeCInformation.cmake"
  6042. -  "/usr/local/share/cmake-3.0/Modules/CMakeCXXInformation.cmake"
  6043. -  "/usr/local/share/cmake-3.0/Modules/CMakeCommonLanguageInclude.cmake"
  6044. -  "/usr/local/share/cmake-3.0/Modules/CMakeFindDependencyMacro.cmake"
  6045. -  "/usr/local/share/cmake-3.0/Modules/CMakeGenericSystem.cmake"
  6046. -  "/usr/local/share/cmake-3.0/Modules/CMakeParseArguments.cmake"
  6047. -  "/usr/local/share/cmake-3.0/Modules/CMakeSystemSpecificInformation.cmake"
  6048. -  "/usr/local/share/cmake-3.0/Modules/CheckCXXSourceCompiles.cmake"
  6049. -  "/usr/local/share/cmake-3.0/Modules/CheckCXXSymbolExists.cmake"
  6050. -  "/usr/local/share/cmake-3.0/Modules/CheckFunctionExists.cmake"
  6051. -  "/usr/local/share/cmake-3.0/Modules/CheckIncludeFiles.cmake"
  6052. -  "/usr/local/share/cmake-3.0/Modules/CheckSymbolExists.cmake"
  6053. -  "/usr/local/share/cmake-3.0/Modules/Compiler/GNU-C.cmake"
  6054. -  "/usr/local/share/cmake-3.0/Modules/Compiler/GNU-CXX.cmake"
  6055. -  "/usr/local/share/cmake-3.0/Modules/Compiler/GNU.cmake"
  6056. -  "/usr/local/share/cmake-3.0/Modules/FeatureSummary.cmake"
  6057. -  "/usr/local/share/cmake-3.0/Modules/FindPackageHandleStandardArgs.cmake"
  6058. -  "/usr/local/share/cmake-3.0/Modules/FindPackageMessage.cmake"
  6059. -  "/usr/local/share/cmake-3.0/Modules/FindPkgConfig.cmake"
  6060. -  "/usr/local/share/cmake-3.0/Modules/FindQt4.cmake"
  6061. -  "/usr/local/share/cmake-3.0/Modules/MacroAddFileDependencies.cmake"
  6062. -  "/usr/local/share/cmake-3.0/Modules/Platform/Linux-GNU-C.cmake"
  6063. -  "/usr/local/share/cmake-3.0/Modules/Platform/Linux-GNU-CXX.cmake"
  6064. -  "/usr/local/share/cmake-3.0/Modules/Platform/Linux-GNU.cmake"
  6065. -  "/usr/local/share/cmake-3.0/Modules/Platform/Linux.cmake"
  6066. -  "/usr/local/share/cmake-3.0/Modules/Platform/UnixPaths.cmake"
  6067. -  "/usr/local/share/cmake-3.0/Modules/Qt4ConfigDependentSettings.cmake"
  6068. -  "/usr/local/share/cmake-3.0/Modules/Qt4Macros.cmake"
  6069. -  "/usr/local/share/cmake-3.0/Modules/UseQt4.cmake"
  6070. -  "/usr/share/ECM/cmake/ECMConfig.cmake"
  6071. -  "/usr/share/ECM/cmake/ECMConfigVersion.cmake"
  6072. -  "/usr/share/ECM/find-modules/FindKF5.cmake"
  6073. -  "/usr/share/ECM/kde-modules/KDECMakeSettings.cmake"
  6074. -  "/usr/share/ECM/kde-modules/KDECompilerSettings.cmake"
  6075. -  "/usr/share/ECM/kde-modules/KDEInstallDirs.cmake"
  6076. -  "/usr/share/ECM/modules/ECMCoverageOption.cmake"
  6077. -  "/usr/share/ECM/modules/ECMEnableSanitizers.cmake"
  6078. -  "/usr/share/ECM/modules/ECMInstallIcons.cmake"
  6079. -  "/usr/share/ECM/modules/ECMUseFindModules.cmake"
  6080. -  )
  6081. -
  6082. -# The corresponding makefile is:
  6083. -set(CMAKE_MAKEFILE_OUTPUTS
  6084. -  "Makefile"
  6085. -  "CMakeFiles/cmake.check_cache"
  6086. -  )
  6087. -
  6088. -# Byproducts of CMake generate step:
  6089. -set(CMAKE_MAKEFILE_PRODUCTS
  6090. -  "config-kalzium.h"
  6091. -  "CMakeFiles/CMakeDirectoryInformation.cmake"
  6092. -  "compoundviewer/CMakeFiles/CMakeDirectoryInformation.cmake"
  6093. -  "doc/CMakeFiles/CMakeDirectoryInformation.cmake"
  6094. -  "src/CMakeFiles/CMakeDirectoryInformation.cmake"
  6095. -  "data/CMakeFiles/CMakeDirectoryInformation.cmake"
  6096. -  "data/hazardsymbols/CMakeFiles/CMakeDirectoryInformation.cmake"
  6097. -  "data/htmlview/CMakeFiles/CMakeDirectoryInformation.cmake"
  6098. -  "data/icons/CMakeFiles/CMakeDirectoryInformation.cmake"
  6099. -  "data/iconsets/CMakeFiles/CMakeDirectoryInformation.cmake"
  6100. -  "data/iconsets/school/CMakeFiles/CMakeDirectoryInformation.cmake"
  6101. -  "data/toolpics/CMakeFiles/CMakeDirectoryInformation.cmake"
  6102. -  "data/latticeicons/CMakeFiles/CMakeDirectoryInformation.cmake"
  6103. -  "data/maps/CMakeFiles/CMakeDirectoryInformation.cmake"
  6104. -  "data/molecules/CMakeFiles/CMakeDirectoryInformation.cmake"
  6105. -  "plasmoid/CMakeFiles/CMakeDirectoryInformation.cmake"
  6106. -  "plasmoid/applet/CMakeFiles/CMakeDirectoryInformation.cmake"
  6107. -  "plasmoid/applet/didyouknow/CMakeFiles/CMakeDirectoryInformation.cmake"
  6108. -  "plasmoid/applet/nuclearPlasmoid/CMakeFiles/CMakeDirectoryInformation.cmake"
  6109. -  "plasmoid/applet/concentrationPlasmoid/CMakeFiles/CMakeDirectoryInformation.cmake"
  6110. -  "plasmoid/applet/gasPlasmoid/CMakeFiles/CMakeDirectoryInformation.cmake"
  6111. -  "plasmoid/applet/psePlasmoid/CMakeFiles/CMakeDirectoryInformation.cmake"
  6112. -  "plasmoid/engine/CMakeFiles/CMakeDirectoryInformation.cmake"
  6113. -  "libscience/CMakeFiles/CMakeDirectoryInformation.cmake"
  6114. -  "libscience/data/CMakeFiles/CMakeDirectoryInformation.cmake"
  6115. -  "libscience/tests/CMakeFiles/CMakeDirectoryInformation.cmake"
  6116. -  "qml/CMakeFiles/CMakeDirectoryInformation.cmake"
  6117. -  )
  6118. -
  6119. -# Dependency information for all targets:
  6120. -set(CMAKE_DEPEND_INFO_FILES
  6121. -  "compoundviewer/CMakeFiles/compoundviewer.dir/DependInfo.cmake"
  6122. -  "doc/CMakeFiles/doc-index-cache-bz2.dir/DependInfo.cmake"
  6123. -  "doc/CMakeFiles/doc-kalzium-1.dir/DependInfo.cmake"
  6124. -  "src/CMakeFiles/kalzium.dir/DependInfo.cmake"
  6125. -  "plasmoid/applet/didyouknow/CMakeFiles/plasma_applet_didyouknow.dir/DependInfo.cmake"
  6126. -  "plasmoid/applet/nuclearPlasmoid/CMakeFiles/nuclearCalculator.dir/DependInfo.cmake"
  6127. -  "plasmoid/applet/concentrationPlasmoid/CMakeFiles/concentrationCalculator.dir/DependInfo.cmake"
  6128. -  "plasmoid/applet/gasPlasmoid/CMakeFiles/gasCalculator.dir/DependInfo.cmake"
  6129. -  "plasmoid/applet/psePlasmoid/CMakeFiles/plasma_applet_molmassCalculator.dir/DependInfo.cmake"
  6130. -  "plasmoid/engine/CMakeFiles/plasma_engine_kalzium.dir/DependInfo.cmake"
  6131. -  "libscience/CMakeFiles/science.dir/DependInfo.cmake"
  6132. -  "libscience/tests/CMakeFiles/elementparsertest.dir/DependInfo.cmake"
  6133. -  "libscience/tests/CMakeFiles/isotopeparsertest.dir/DependInfo.cmake"
  6134. -  "libscience/tests/CMakeFiles/spectrumtest.dir/DependInfo.cmake"
  6135. -  )
  6136. diff --git a/makefile2/CMakeFiles/Makefile2 b/makefile2/CMakeFiles/Makefile2
  6137. deleted file mode 100644
  6138. index 41f7ac6f9be594f2a52c9092e6817afd0bb4b858..0000000000000000000000000000000000000000
  6139. --- a/makefile2/CMakeFiles/Makefile2
  6140. +++ /dev/null
  6141. @@ -1,478 +0,0 @@
  6142. -# CMAKE generated file: DO NOT EDIT!
  6143. -# Generated by "Unix Makefiles" Generator, CMake Version 3.0
  6144. -
  6145. -# Default target executed when no arguments are given to make.
  6146. -default_target: all
  6147. -.PHONY : default_target
  6148. -
  6149. -# The main recursive all target
  6150. -all:
  6151. -.PHONY : all
  6152. -
  6153. -# The main recursive preinstall target
  6154. -preinstall:
  6155. -.PHONY : preinstall
  6156. -
  6157. -#=============================================================================
  6158. -# Special targets provided by cmake.
  6159. -
  6160. -# Disable implicit rules so canonical targets will work.
  6161. -.SUFFIXES:
  6162. -
  6163. -# Remove some rules from gmake that .SUFFIXES does not remove.
  6164. -SUFFIXES =
  6165. -
  6166. -.SUFFIXES: .hpux_make_needs_suffix_list
  6167. -
  6168. -# Suppress display of executed commands.
  6169. -$(VERBOSE).SILENT:
  6170. -
  6171. -# A target that is always out of date.
  6172. -cmake_force:
  6173. -.PHONY : cmake_force
  6174. -
  6175. -#=============================================================================
  6176. -# Set environment variables for the build.
  6177. -
  6178. -# The shell in which to execute make rules.
  6179. -SHELL = /bin/sh
  6180. -
  6181. -# The CMake executable.
  6182. -CMAKE_COMMAND = /usr/local/bin/cmake
  6183. -
  6184. -# The command to remove a file.
  6185. -RM = /usr/local/bin/cmake -E remove -f
  6186. -
  6187. -# Escaping for special characters.
  6188. -EQUALS = =
  6189. -
  6190. -# The top-level source directory on which CMake was run.
  6191. -CMAKE_SOURCE_DIR = /home/anu/kalzium
  6192. -
  6193. -# The top-level build directory on which CMake was run.
  6194. -CMAKE_BINARY_DIR = /home/anu/kalzium/makefile2
  6195. -
  6196. -#=============================================================================
  6197. -# Directory level rules for directory compoundviewer
  6198. -
  6199. -# Convenience name for "all" pass in the directory.
  6200. -compoundviewer/all:
  6201. -.PHONY : compoundviewer/all
  6202. -
  6203. -# Convenience name for "clean" pass in the directory.
  6204. -compoundviewer/clean:
  6205. -.PHONY : compoundviewer/clean
  6206. -
  6207. -# Convenience name for "preinstall" pass in the directory.
  6208. -compoundviewer/preinstall:
  6209. -.PHONY : compoundviewer/preinstall
  6210. -
  6211. -#=============================================================================
  6212. -# Directory level rules for directory doc
  6213. -
  6214. -# Convenience name for "all" pass in the directory.
  6215. -doc/all:
  6216. -.PHONY : doc/all
  6217. -
  6218. -# Convenience name for "clean" pass in the directory.
  6219. -doc/clean:
  6220. -.PHONY : doc/clean
  6221. -
  6222. -# Convenience name for "preinstall" pass in the directory.
  6223. -doc/preinstall:
  6224. -.PHONY : doc/preinstall
  6225. -
  6226. -#=============================================================================
  6227. -# Directory level rules for directory src
  6228. -
  6229. -# Convenience name for "all" pass in the directory.
  6230. -src/all:
  6231. -.PHONY : src/all
  6232. -
  6233. -# Convenience name for "clean" pass in the directory.
  6234. -src/clean:
  6235. -.PHONY : src/clean
  6236. -
  6237. -# Convenience name for "preinstall" pass in the directory.
  6238. -src/preinstall:
  6239. -.PHONY : src/preinstall
  6240. -
  6241. -#=============================================================================
  6242. -# Directory level rules for directory data
  6243. -
  6244. -# Convenience name for "all" pass in the directory.
  6245. -data/all: data/hazardsymbols/all
  6246. -data/all: data/htmlview/all
  6247. -data/all: data/icons/all
  6248. -data/all: data/iconsets/all
  6249. -data/all: data/toolpics/all
  6250. -data/all: data/latticeicons/all
  6251. -data/all: data/maps/all
  6252. -data/all: data/molecules/all
  6253. -.PHONY : data/all
  6254. -
  6255. -# Convenience name for "clean" pass in the directory.
  6256. -data/clean: data/hazardsymbols/clean
  6257. -data/clean: data/htmlview/clean
  6258. -data/clean: data/icons/clean
  6259. -data/clean: data/iconsets/clean
  6260. -data/clean: data/toolpics/clean
  6261. -data/clean: data/latticeicons/clean
  6262. -data/clean: data/maps/clean
  6263. -data/clean: data/molecules/clean
  6264. -.PHONY : data/clean
  6265. -
  6266. -# Convenience name for "preinstall" pass in the directory.
  6267. -data/preinstall: data/hazardsymbols/preinstall
  6268. -data/preinstall: data/htmlview/preinstall
  6269. -data/preinstall: data/icons/preinstall
  6270. -data/preinstall: data/iconsets/preinstall
  6271. -data/preinstall: data/toolpics/preinstall
  6272. -data/preinstall: data/latticeicons/preinstall
  6273. -data/preinstall: data/maps/preinstall
  6274. -data/preinstall: data/molecules/preinstall
  6275. -.PHONY : data/preinstall
  6276. -
  6277. -#=============================================================================
  6278. -# Directory level rules for directory data/hazardsymbols
  6279. -
  6280. -# Convenience name for "all" pass in the directory.
  6281. -data/hazardsymbols/all:
  6282. -.PHONY : data/hazardsymbols/all
  6283. -
  6284. -# Convenience name for "clean" pass in the directory.
  6285. -data/hazardsymbols/clean:
  6286. -.PHONY : data/hazardsymbols/clean
  6287. -
  6288. -# Convenience name for "preinstall" pass in the directory.
  6289. -data/hazardsymbols/preinstall:
  6290. -.PHONY : data/hazardsymbols/preinstall
  6291. -
  6292. -#=============================================================================
  6293. -# Directory level rules for directory data/htmlview
  6294. -
  6295. -# Convenience name for "all" pass in the directory.
  6296. -data/htmlview/all:
  6297. -.PHONY : data/htmlview/all
  6298. -
  6299. -# Convenience name for "clean" pass in the directory.
  6300. -data/htmlview/clean:
  6301. -.PHONY : data/htmlview/clean
  6302. -
  6303. -# Convenience name for "preinstall" pass in the directory.
  6304. -data/htmlview/preinstall:
  6305. -.PHONY : data/htmlview/preinstall
  6306. -
  6307. -#=============================================================================
  6308. -# Directory level rules for directory data/icons
  6309. -
  6310. -# Convenience name for "all" pass in the directory.
  6311. -data/icons/all:
  6312. -.PHONY : data/icons/all
  6313. -
  6314. -# Convenience name for "clean" pass in the directory.
  6315. -data/icons/clean:
  6316. -.PHONY : data/icons/clean
  6317. -
  6318. -# Convenience name for "preinstall" pass in the directory.
  6319. -data/icons/preinstall:
  6320. -.PHONY : data/icons/preinstall
  6321. -
  6322. -#=============================================================================
  6323. -# Directory level rules for directory data/iconsets
  6324. -
  6325. -# Convenience name for "all" pass in the directory.
  6326. -data/iconsets/all: data/iconsets/school/all
  6327. -.PHONY : data/iconsets/all
  6328. -
  6329. -# Convenience name for "clean" pass in the directory.
  6330. -data/iconsets/clean: data/iconsets/school/clean
  6331. -.PHONY : data/iconsets/clean
  6332. -
  6333. -# Convenience name for "preinstall" pass in the directory.
  6334. -data/iconsets/preinstall: data/iconsets/school/preinstall
  6335. -.PHONY : data/iconsets/preinstall
  6336. -
  6337. -#=============================================================================
  6338. -# Directory level rules for directory data/iconsets/school
  6339. -
  6340. -# Convenience name for "all" pass in the directory.
  6341. -data/iconsets/school/all:
  6342. -.PHONY : data/iconsets/school/all
  6343. -
  6344. -# Convenience name for "clean" pass in the directory.
  6345. -data/iconsets/school/clean:
  6346. -.PHONY : data/iconsets/school/clean
  6347. -
  6348. -# Convenience name for "preinstall" pass in the directory.
  6349. -data/iconsets/school/preinstall:
  6350. -.PHONY : data/iconsets/school/preinstall
  6351. -
  6352. -#=============================================================================
  6353. -# Directory level rules for directory data/toolpics
  6354. -
  6355. -# Convenience name for "all" pass in the directory.
  6356. -data/toolpics/all:
  6357. -.PHONY : data/toolpics/all
  6358. -
  6359. -# Convenience name for "clean" pass in the directory.
  6360. -data/toolpics/clean:
  6361. -.PHONY : data/toolpics/clean
  6362. -
  6363. -# Convenience name for "preinstall" pass in the directory.
  6364. -data/toolpics/preinstall:
  6365. -.PHONY : data/toolpics/preinstall
  6366. -
  6367. -#=============================================================================
  6368. -# Directory level rules for directory data/latticeicons
  6369. -
  6370. -# Convenience name for "all" pass in the directory.
  6371. -data/latticeicons/all:
  6372. -.PHONY : data/latticeicons/all
  6373. -
  6374. -# Convenience name for "clean" pass in the directory.
  6375. -data/latticeicons/clean:
  6376. -.PHONY : data/latticeicons/clean
  6377. -
  6378. -# Convenience name for "preinstall" pass in the directory.
  6379. -data/latticeicons/preinstall:
  6380. -.PHONY : data/latticeicons/preinstall
  6381. -
  6382. -#=============================================================================
  6383. -# Directory level rules for directory data/maps
  6384. -
  6385. -# Convenience name for "all" pass in the directory.
  6386. -data/maps/all:
  6387. -.PHONY : data/maps/all
  6388. -
  6389. -# Convenience name for "clean" pass in the directory.
  6390. -data/maps/clean:
  6391. -.PHONY : data/maps/clean
  6392. -
  6393. -# Convenience name for "preinstall" pass in the directory.
  6394. -data/maps/preinstall:
  6395. -.PHONY : data/maps/preinstall
  6396. -
  6397. -#=============================================================================
  6398. -# Directory level rules for directory data/molecules
  6399. -
  6400. -# Convenience name for "all" pass in the directory.
  6401. -data/molecules/all:
  6402. -.PHONY : data/molecules/all
  6403. -
  6404. -# Convenience name for "clean" pass in the directory.
  6405. -data/molecules/clean:
  6406. -.PHONY : data/molecules/clean
  6407. -
  6408. -# Convenience name for "preinstall" pass in the directory.
  6409. -data/molecules/preinstall:
  6410. -.PHONY : data/molecules/preinstall
  6411. -
  6412. -#=============================================================================
  6413. -# Directory level rules for directory plasmoid
  6414. -
  6415. -# Convenience name for "all" pass in the directory.
  6416. -plasmoid/all: plasmoid/applet/all
  6417. -plasmoid/all: plasmoid/engine/all
  6418. -.PHONY : plasmoid/all
  6419. -
  6420. -# Convenience name for "clean" pass in the directory.
  6421. -plasmoid/clean: plasmoid/applet/clean
  6422. -plasmoid/clean: plasmoid/engine/clean
  6423. -.PHONY : plasmoid/clean
  6424. -
  6425. -# Convenience name for "preinstall" pass in the directory.
  6426. -plasmoid/preinstall: plasmoid/applet/preinstall
  6427. -plasmoid/preinstall: plasmoid/engine/preinstall
  6428. -.PHONY : plasmoid/preinstall
  6429. -
  6430. -#=============================================================================
  6431. -# Directory level rules for directory plasmoid/applet
  6432. -
  6433. -# Convenience name for "all" pass in the directory.
  6434. -plasmoid/applet/all: plasmoid/applet/didyouknow/all
  6435. -plasmoid/applet/all: plasmoid/applet/nuclearPlasmoid/all
  6436. -plasmoid/applet/all: plasmoid/applet/concentrationPlasmoid/all
  6437. -plasmoid/applet/all: plasmoid/applet/gasPlasmoid/all
  6438. -plasmoid/applet/all: plasmoid/applet/psePlasmoid/all
  6439. -.PHONY : plasmoid/applet/all
  6440. -
  6441. -# Convenience name for "clean" pass in the directory.
  6442. -plasmoid/applet/clean: plasmoid/applet/didyouknow/clean
  6443. -plasmoid/applet/clean: plasmoid/applet/nuclearPlasmoid/clean
  6444. -plasmoid/applet/clean: plasmoid/applet/concentrationPlasmoid/clean
  6445. -plasmoid/applet/clean: plasmoid/applet/gasPlasmoid/clean
  6446. -plasmoid/applet/clean: plasmoid/applet/psePlasmoid/clean
  6447. -.PHONY : plasmoid/applet/clean
  6448. -
  6449. -# Convenience name for "preinstall" pass in the directory.
  6450. -plasmoid/applet/preinstall: plasmoid/applet/didyouknow/preinstall
  6451. -plasmoid/applet/preinstall: plasmoid/applet/nuclearPlasmoid/preinstall
  6452. -plasmoid/applet/preinstall: plasmoid/applet/concentrationPlasmoid/preinstall
  6453. -plasmoid/applet/preinstall: plasmoid/applet/gasPlasmoid/preinstall
  6454. -plasmoid/applet/preinstall: plasmoid/applet/psePlasmoid/preinstall
  6455. -.PHONY : plasmoid/applet/preinstall
  6456. -
  6457. -#=============================================================================
  6458. -# Directory level rules for directory plasmoid/applet/didyouknow
  6459. -
  6460. -# Convenience name for "all" pass in the directory.
  6461. -plasmoid/applet/didyouknow/all:
  6462. -.PHONY : plasmoid/applet/didyouknow/all
  6463. -
  6464. -# Convenience name for "clean" pass in the directory.
  6465. -plasmoid/applet/didyouknow/clean:
  6466. -.PHONY : plasmoid/applet/didyouknow/clean
  6467. -
  6468. -# Convenience name for "preinstall" pass in the directory.
  6469. -plasmoid/applet/didyouknow/preinstall:
  6470. -.PHONY : plasmoid/applet/didyouknow/preinstall
  6471. -
  6472. -#=============================================================================
  6473. -# Directory level rules for directory plasmoid/applet/nuclearPlasmoid
  6474. -
  6475. -# Convenience name for "all" pass in the directory.
  6476. -plasmoid/applet/nuclearPlasmoid/all:
  6477. -.PHONY : plasmoid/applet/nuclearPlasmoid/all
  6478. -
  6479. -# Convenience name for "clean" pass in the directory.
  6480. -plasmoid/applet/nuclearPlasmoid/clean:
  6481. -.PHONY : plasmoid/applet/nuclearPlasmoid/clean
  6482. -
  6483. -# Convenience name for "preinstall" pass in the directory.
  6484. -plasmoid/applet/nuclearPlasmoid/preinstall:
  6485. -.PHONY : plasmoid/applet/nuclearPlasmoid/preinstall
  6486. -
  6487. -#=============================================================================
  6488. -# Directory level rules for directory plasmoid/applet/concentrationPlasmoid
  6489. -
  6490. -# Convenience name for "all" pass in the directory.
  6491. -plasmoid/applet/concentrationPlasmoid/all:
  6492. -.PHONY : plasmoid/applet/concentrationPlasmoid/all
  6493. -
  6494. -# Convenience name for "clean" pass in the directory.
  6495. -plasmoid/applet/concentrationPlasmoid/clean:
  6496. -.PHONY : plasmoid/applet/concentrationPlasmoid/clean
  6497. -
  6498. -# Convenience name for "preinstall" pass in the directory.
  6499. -plasmoid/applet/concentrationPlasmoid/preinstall:
  6500. -.PHONY : plasmoid/applet/concentrationPlasmoid/preinstall
  6501. -
  6502. -#=============================================================================
  6503. -# Directory level rules for directory plasmoid/applet/gasPlasmoid
  6504. -
  6505. -# Convenience name for "all" pass in the directory.
  6506. -plasmoid/applet/gasPlasmoid/all:
  6507. -.PHONY : plasmoid/applet/gasPlasmoid/all
  6508. -
  6509. -# Convenience name for "clean" pass in the directory.
  6510. -plasmoid/applet/gasPlasmoid/clean:
  6511. -.PHONY : plasmoid/applet/gasPlasmoid/clean
  6512. -
  6513. -# Convenience name for "preinstall" pass in the directory.
  6514. -plasmoid/applet/gasPlasmoid/preinstall:
  6515. -.PHONY : plasmoid/applet/gasPlasmoid/preinstall
  6516. -
  6517. -#=============================================================================
  6518. -# Directory level rules for directory plasmoid/applet/psePlasmoid
  6519. -
  6520. -# Convenience name for "all" pass in the directory.
  6521. -plasmoid/applet/psePlasmoid/all:
  6522. -.PHONY : plasmoid/applet/psePlasmoid/all
  6523. -
  6524. -# Convenience name for "clean" pass in the directory.
  6525. -plasmoid/applet/psePlasmoid/clean:
  6526. -.PHONY : plasmoid/applet/psePlasmoid/clean
  6527. -
  6528. -# Convenience name for "preinstall" pass in the directory.
  6529. -plasmoid/applet/psePlasmoid/preinstall:
  6530. -.PHONY : plasmoid/applet/psePlasmoid/preinstall
  6531. -
  6532. -#=============================================================================
  6533. -# Directory level rules for directory plasmoid/engine
  6534. -
  6535. -# Convenience name for "all" pass in the directory.
  6536. -plasmoid/engine/all:
  6537. -.PHONY : plasmoid/engine/all
  6538. -
  6539. -# Convenience name for "clean" pass in the directory.
  6540. -plasmoid/engine/clean:
  6541. -.PHONY : plasmoid/engine/clean
  6542. -
  6543. -# Convenience name for "preinstall" pass in the directory.
  6544. -plasmoid/engine/preinstall:
  6545. -.PHONY : plasmoid/engine/preinstall
  6546. -
  6547. -#=============================================================================
  6548. -# Directory level rules for directory libscience
  6549. -
  6550. -# Convenience name for "all" pass in the directory.
  6551. -libscience/all: libscience/data/all
  6552. -libscience/all: libscience/tests/all
  6553. -.PHONY : libscience/all
  6554. -
  6555. -# Convenience name for "clean" pass in the directory.
  6556. -libscience/clean: libscience/data/clean
  6557. -libscience/clean: libscience/tests/clean
  6558. -.PHONY : libscience/clean
  6559. -
  6560. -# Convenience name for "preinstall" pass in the directory.
  6561. -libscience/preinstall: libscience/data/preinstall
  6562. -libscience/preinstall: libscience/tests/preinstall
  6563. -.PHONY : libscience/preinstall
  6564. -
  6565. -#=============================================================================
  6566. -# Directory level rules for directory libscience/data
  6567. -
  6568. -# Convenience name for "all" pass in the directory.
  6569. -libscience/data/all:
  6570. -.PHONY : libscience/data/all
  6571. -
  6572. -# Convenience name for "clean" pass in the directory.
  6573. -libscience/data/clean:
  6574. -.PHONY : libscience/data/clean
  6575. -
  6576. -# Convenience name for "preinstall" pass in the directory.
  6577. -libscience/data/preinstall:
  6578. -.PHONY : libscience/data/preinstall
  6579. -
  6580. -#=============================================================================
  6581. -# Directory level rules for directory libscience/tests
  6582. -
  6583. -# Convenience name for "all" pass in the directory.
  6584. -libscience/tests/all:
  6585. -.PHONY : libscience/tests/all
  6586. -
  6587. -# Convenience name for "clean" pass in the directory.
  6588. -libscience/tests/clean:
  6589. -.PHONY : libscience/tests/clean
  6590. -
  6591. -# Convenience name for "preinstall" pass in the directory.
  6592. -libscience/tests/preinstall:
  6593. -.PHONY : libscience/tests/preinstall
  6594. -
  6595. -#=============================================================================
  6596. -# Directory level rules for directory qml
  6597. -
  6598. -# Convenience name for "all" pass in the directory.
  6599. -qml/all:
  6600. -.PHONY : qml/all
  6601. -
  6602. -# Convenience name for "clean" pass in the directory.
  6603. -qml/clean:
  6604. -.PHONY : qml/clean
  6605. -
  6606. -# Convenience name for "preinstall" pass in the directory.
  6607. -qml/preinstall:
  6608. -.PHONY : qml/preinstall
  6609. -
  6610. -#=============================================================================
  6611. -# Special targets to cleanup operation of make.
  6612. -
  6613. -# Special rule to run CMake to check the build system integrity.
  6614. -# No rule that depends on this can have commands that come from listfiles
  6615. -# because they might be regenerated.
  6616. -cmake_check_build_system:
  6617. -   $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
  6618. -.PHONY : cmake_check_build_system
  6619. -
  6620. diff --git a/makefile2/CMakeFiles/cmake.check_cache b/makefile2/CMakeFiles/cmake.check_cache
  6621. deleted file mode 100644
  6622. index 3dccd731726d7faa8b29d8d7dba3b981a53ca497..0000000000000000000000000000000000000000
  6623. --- a/makefile2/CMakeFiles/cmake.check_cache
  6624. +++ /dev/null
  6625. @@ -1 +0,0 @@
  6626. -# This file is generated by cmake for dependency checking of the CMakeCache.txt file
  6627. diff --git a/makefile2/CMakeFiles/progress.marks b/makefile2/CMakeFiles/progress.marks
  6628. deleted file mode 100644
  6629. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6630. --- a/makefile2/CMakeFiles/progress.marks
  6631. +++ /dev/null
  6632. @@ -1 +0,0 @@
  6633. -0
  6634. diff --git a/makefile2/compoundviewer/CMakeFiles/progress.marks b/makefile2/compoundviewer/CMakeFiles/progress.marks
  6635. deleted file mode 100644
  6636. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6637. --- a/makefile2/compoundviewer/CMakeFiles/progress.marks
  6638. +++ /dev/null
  6639. @@ -1 +0,0 @@
  6640. -0
  6641. diff --git a/makefile2/config-kalzium.h b/makefile2/config-kalzium.h
  6642. deleted file mode 100644
  6643. index eac030ea683d3f1d03c947248f56e308962e86e0..0000000000000000000000000000000000000000
  6644. --- a/makefile2/config-kalzium.h
  6645. +++ /dev/null
  6646. @@ -1,18 +0,0 @@
  6647. -/* facile solver available? */
  6648. -#define HAVE_FACILE 1
  6649. -
  6650. -/* Define to 1 if we have OpenBabel2 */
  6651. -#define HAVE_OPENBABEL2 1
  6652. -
  6653. -/* Define 1 if we have Eigen */
  6654. -#define HAVE_EIGEN 1
  6655. -
  6656. -/* Define 1 if we have Avogadro */
  6657. -#define HAVE_AVOGADRO 1
  6658. -
  6659. -/* Define to 1 if you have the <ieeefp.h> header file. */
  6660. -/* #undef HAVE_IEEEFP_H */
  6661. -
  6662. -/* The base directory of the Avogadro plugins. */
  6663. -#define AVOGADRO_PLUGIN_DIR "/usr/lib/avogadro/1_1"
  6664. -
  6665. diff --git a/makefile2/data/CMakeFiles/progress.marks b/makefile2/data/CMakeFiles/progress.marks
  6666. deleted file mode 100644
  6667. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6668. --- a/makefile2/data/CMakeFiles/progress.marks
  6669. +++ /dev/null
  6670. @@ -1 +0,0 @@
  6671. -0
  6672. diff --git a/makefile2/data/hazardsymbols/CMakeFiles/progress.marks b/makefile2/data/hazardsymbols/CMakeFiles/progress.marks
  6673. deleted file mode 100644
  6674. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6675. --- a/makefile2/data/hazardsymbols/CMakeFiles/progress.marks
  6676. +++ /dev/null
  6677. @@ -1 +0,0 @@
  6678. -0
  6679. diff --git a/makefile2/data/htmlview/CMakeFiles/progress.marks b/makefile2/data/htmlview/CMakeFiles/progress.marks
  6680. deleted file mode 100644
  6681. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6682. --- a/makefile2/data/htmlview/CMakeFiles/progress.marks
  6683. +++ /dev/null
  6684. @@ -1 +0,0 @@
  6685. -0
  6686. diff --git a/makefile2/data/icons/CMakeFiles/progress.marks b/makefile2/data/icons/CMakeFiles/progress.marks
  6687. deleted file mode 100644
  6688. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6689. --- a/makefile2/data/icons/CMakeFiles/progress.marks
  6690. +++ /dev/null
  6691. @@ -1 +0,0 @@
  6692. -0
  6693. diff --git a/makefile2/data/iconsets/CMakeFiles/progress.marks b/makefile2/data/iconsets/CMakeFiles/progress.marks
  6694. deleted file mode 100644
  6695. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6696. --- a/makefile2/data/iconsets/CMakeFiles/progress.marks
  6697. +++ /dev/null
  6698. @@ -1 +0,0 @@
  6699. -0
  6700. diff --git a/makefile2/data/iconsets/school/CMakeFiles/progress.marks b/makefile2/data/iconsets/school/CMakeFiles/progress.marks
  6701. deleted file mode 100644
  6702. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6703. --- a/makefile2/data/iconsets/school/CMakeFiles/progress.marks
  6704. +++ /dev/null
  6705. @@ -1 +0,0 @@
  6706. -0
  6707. diff --git a/makefile2/data/latticeicons/CMakeFiles/progress.marks b/makefile2/data/latticeicons/CMakeFiles/progress.marks
  6708. deleted file mode 100644
  6709. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6710. --- a/makefile2/data/latticeicons/CMakeFiles/progress.marks
  6711. +++ /dev/null
  6712. @@ -1 +0,0 @@
  6713. -0
  6714. diff --git a/makefile2/data/maps/CMakeFiles/progress.marks b/makefile2/data/maps/CMakeFiles/progress.marks
  6715. deleted file mode 100644
  6716. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6717. --- a/makefile2/data/maps/CMakeFiles/progress.marks
  6718. +++ /dev/null
  6719. @@ -1 +0,0 @@
  6720. -0
  6721. diff --git a/makefile2/data/molecules/CMakeFiles/progress.marks b/makefile2/data/molecules/CMakeFiles/progress.marks
  6722. deleted file mode 100644
  6723. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6724. --- a/makefile2/data/molecules/CMakeFiles/progress.marks
  6725. +++ /dev/null
  6726. @@ -1 +0,0 @@
  6727. -0
  6728. diff --git a/makefile2/data/toolpics/CMakeFiles/progress.marks b/makefile2/data/toolpics/CMakeFiles/progress.marks
  6729. deleted file mode 100644
  6730. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6731. --- a/makefile2/data/toolpics/CMakeFiles/progress.marks
  6732. +++ /dev/null
  6733. @@ -1 +0,0 @@
  6734. -0
  6735. diff --git a/makefile2/doc/CMakeFiles/progress.marks b/makefile2/doc/CMakeFiles/progress.marks
  6736. deleted file mode 100644
  6737. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6738. --- a/makefile2/doc/CMakeFiles/progress.marks
  6739. +++ /dev/null
  6740. @@ -1 +0,0 @@
  6741. -0
  6742. diff --git a/makefile2/libscience/CMakeFiles/progress.marks b/makefile2/libscience/CMakeFiles/progress.marks
  6743. deleted file mode 100644
  6744. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6745. --- a/makefile2/libscience/CMakeFiles/progress.marks
  6746. +++ /dev/null
  6747. @@ -1 +0,0 @@
  6748. -0
  6749. diff --git a/makefile2/libscience/data/CMakeFiles/progress.marks b/makefile2/libscience/data/CMakeFiles/progress.marks
  6750. deleted file mode 100644
  6751. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6752. --- a/makefile2/libscience/data/CMakeFiles/progress.marks
  6753. +++ /dev/null
  6754. @@ -1 +0,0 @@
  6755. -0
  6756. diff --git a/makefile2/libscience/tests/CMakeFiles/progress.marks b/makefile2/libscience/tests/CMakeFiles/progress.marks
  6757. deleted file mode 100644
  6758. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6759. --- a/makefile2/libscience/tests/CMakeFiles/progress.marks
  6760. +++ /dev/null
  6761. @@ -1 +0,0 @@
  6762. -0
  6763. diff --git a/makefile2/plasmoid/CMakeFiles/progress.marks b/makefile2/plasmoid/CMakeFiles/progress.marks
  6764. deleted file mode 100644
  6765. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6766. --- a/makefile2/plasmoid/CMakeFiles/progress.marks
  6767. +++ /dev/null
  6768. @@ -1 +0,0 @@
  6769. -0
  6770. diff --git a/makefile2/plasmoid/applet/CMakeFiles/progress.marks b/makefile2/plasmoid/applet/CMakeFiles/progress.marks
  6771. deleted file mode 100644
  6772. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6773. --- a/makefile2/plasmoid/applet/CMakeFiles/progress.marks
  6774. +++ /dev/null
  6775. @@ -1 +0,0 @@
  6776. -0
  6777. diff --git a/makefile2/plasmoid/applet/concentrationPlasmoid/CMakeFiles/progress.marks b/makefile2/plasmoid/applet/concentrationPlasmoid/CMakeFiles/progress.marks
  6778. deleted file mode 100644
  6779. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6780. --- a/makefile2/plasmoid/applet/concentrationPlasmoid/CMakeFiles/progress.marks
  6781. +++ /dev/null
  6782. @@ -1 +0,0 @@
  6783. -0
  6784. diff --git a/makefile2/plasmoid/applet/didyouknow/CMakeFiles/progress.marks b/makefile2/plasmoid/applet/didyouknow/CMakeFiles/progress.marks
  6785. deleted file mode 100644
  6786. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6787. --- a/makefile2/plasmoid/applet/didyouknow/CMakeFiles/progress.marks
  6788. +++ /dev/null
  6789. @@ -1 +0,0 @@
  6790. -0
  6791. diff --git a/makefile2/plasmoid/applet/gasPlasmoid/CMakeFiles/progress.marks b/makefile2/plasmoid/applet/gasPlasmoid/CMakeFiles/progress.marks
  6792. deleted file mode 100644
  6793. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6794. --- a/makefile2/plasmoid/applet/gasPlasmoid/CMakeFiles/progress.marks
  6795. +++ /dev/null
  6796. @@ -1 +0,0 @@
  6797. -0
  6798. diff --git a/makefile2/plasmoid/applet/nuclearPlasmoid/CMakeFiles/progress.marks b/makefile2/plasmoid/applet/nuclearPlasmoid/CMakeFiles/progress.marks
  6799. deleted file mode 100644
  6800. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6801. --- a/makefile2/plasmoid/applet/nuclearPlasmoid/CMakeFiles/progress.marks
  6802. +++ /dev/null
  6803. @@ -1 +0,0 @@
  6804. -0
  6805. diff --git a/makefile2/plasmoid/applet/psePlasmoid/CMakeFiles/progress.marks b/makefile2/plasmoid/applet/psePlasmoid/CMakeFiles/progress.marks
  6806. deleted file mode 100644
  6807. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6808. --- a/makefile2/plasmoid/applet/psePlasmoid/CMakeFiles/progress.marks
  6809. +++ /dev/null
  6810. @@ -1 +0,0 @@
  6811. -0
  6812. diff --git a/makefile2/plasmoid/engine/CMakeFiles/progress.marks b/makefile2/plasmoid/engine/CMakeFiles/progress.marks
  6813. deleted file mode 100644
  6814. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6815. --- a/makefile2/plasmoid/engine/CMakeFiles/progress.marks
  6816. +++ /dev/null
  6817. @@ -1 +0,0 @@
  6818. -0
  6819. diff --git a/makefile2/qml/CMakeFiles/progress.marks b/makefile2/qml/CMakeFiles/progress.marks
  6820. deleted file mode 100644
  6821. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6822. --- a/makefile2/qml/CMakeFiles/progress.marks
  6823. +++ /dev/null
  6824. @@ -1 +0,0 @@
  6825. -0
  6826. diff --git a/makefile2/rsa_id.pub b/makefile2/rsa_id.pub
  6827. deleted file mode 100644
  6828. index 58393f13795c0543f9201b6395d5c23e07f9ac6e..0000000000000000000000000000000000000000
  6829. --- a/makefile2/rsa_id.pub
  6830. +++ /dev/null
  6831. @@ -1 +0,0 @@
  6832. -ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCu1i/pmTr3GP1EzsGENi12nzczb7EnDX0seraNpOOBzk/o/W+pbUowbdbYMIO5LkuqJoHAK/U41fGb+BcFs4vhxXhTM+9SASUw8ANzzoIt2RTkkshTrgPeQcKIdkQgjnf/a4RlU0ji4OxzxOUlHoghhlA3lFQobktUMSuArBO/zxpYnzPjovlBPBJtC9VZ95ZrZQj1OK3jfLKOVb6JMqk5CIIUns8tDRrRZAoQ/rBvvYl0itTPrVMY4SwJ34Om/c/1QyxxtGgR0T3mf0YFfiFWMIF0J42WIiFVN8is1lTaXA47ineLt3/muPJ+YLNqPctcH4wWiQ9vsTYDoi/7ibGl root@anu-virtual-machine
  6833. diff --git a/makefile2/src/CMakeFiles/progress.marks b/makefile2/src/CMakeFiles/progress.marks
  6834. deleted file mode 100644
  6835. index 573541ac9702dd3969c9bc859d2b91ec1f7e6e56..0000000000000000000000000000000000000000
  6836. --- a/makefile2/src/CMakeFiles/progress.marks
  6837. +++ /dev/null
  6838. @@ -1 +0,0 @@
  6839. -0
  6840. diff --git a/plasmoid/applet/bodr/CMakeLists.txt b/plasmoid/applet/bodr/CMakeLists.txt
  6841. index bcbefc1883eb5d621ca297177bdb0f0fd373772f..e3ed33ed94c82661bb71bc7c05a5af947b52e8f2 100644
  6842. --- a/plasmoid/applet/bodr/CMakeLists.txt
  6843. +++ b/plasmoid/applet/bodr/CMakeLists.txt
  6844. @@ -1,15 +1,17 @@
  6845. -#include_directories(    ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/   )
  6846. +include_directories(
  6847. +   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/  
  6848. +   )
  6849.  
  6850.  set(kalzium_plasma_SRCS
  6851.      kalzium_plasma.cpp
  6852.      )
  6853.  
  6854. -qt5_wrap_ui(kalzium_plasma_SRCS config.ui)
  6855. +kde4_add_ui_files(kalzium_plasma_SRCS config.ui)
  6856.  
  6857. -add_plugin(plasma_applet_kalzium ${kalzium_plasma_SRCS})
  6858. +kde4_add_plugin(plasma_applet_kalzium ${kalzium_plasma_SRCS})
  6859.  
  6860.  target_link_libraries(plasma_applet_kalzium
  6861. -    KF5::Plasma KF5::KIOWidgets
  6862. +    ${KDE4_PLASMA_LIBS} ${KDE4_KIO_LIBS}
  6863.      science
  6864.      )
  6865.  
  6866. diff --git a/plasmoid/applet/bodr/CMakeLists.txt~ b/plasmoid/applet/bodr/CMakeLists.txt~
  6867. deleted file mode 100644
  6868. index e3ed33ed94c82661bb71bc7c05a5af947b52e8f2..0000000000000000000000000000000000000000
  6869. --- a/plasmoid/applet/bodr/CMakeLists.txt~
  6870. +++ /dev/null
  6871. @@ -1,31 +0,0 @@
  6872. -include_directories(
  6873. -   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/  
  6874. -   )
  6875. -
  6876. -set(kalzium_plasma_SRCS
  6877. -    kalzium_plasma.cpp
  6878. -    )
  6879. -
  6880. -kde4_add_ui_files(kalzium_plasma_SRCS config.ui)
  6881. -
  6882. -kde4_add_plugin(plasma_applet_kalzium ${kalzium_plasma_SRCS})
  6883. -
  6884. -target_link_libraries(plasma_applet_kalzium
  6885. -    ${KDE4_PLASMA_LIBS} ${KDE4_KIO_LIBS}
  6886. -    science
  6887. -    )
  6888. -
  6889. -install(
  6890. -    TARGETS plasma_applet_kalzium
  6891. -    DESTINATION ${PLUGIN_INSTALL_DIR}
  6892. -    )
  6893. -
  6894. -install(
  6895. -    FILES plasma_kalzium.desktop
  6896. -    DESTINATION ${SERVICES_INSTALL_DIR}
  6897. -    )
  6898. -
  6899. -install(
  6900. -    FILES testtube.svg
  6901. -    DESTINATION ${DATA_INSTALL_DIR}/desktoptheme/default/widgets/
  6902. -    )
  6903. diff --git a/plasmoid/applet/concentrationPlasmoid/CMakeLists.txt b/plasmoid/applet/concentrationPlasmoid/CMakeLists.txt
  6904. index b8ef22d760aa7ab2ae23c1f2e9baa3ddc8fafd85..32ea556983a92e83b1c63c5c079d2bcd252083be 100644
  6905. --- a/plasmoid/applet/concentrationPlasmoid/CMakeLists.txt
  6906. +++ b/plasmoid/applet/concentrationPlasmoid/CMakeLists.txt
  6907. @@ -1,11 +1,11 @@
  6908.  project(concentrationCalculator)
  6909.  
  6910.  set(concentrationCalculator_SRCS concentrationCalculator.cpp)
  6911. -qt5_wrap_ui(concentrationCalculator_SRCS concentrationCalculatorConfig.ui)
  6912. -add_library(concentrationCalculator ${concentrationCalculator_SRCS})
  6913. +kde4_add_ui_files(concentrationCalculator_SRCS concentrationCalculatorConfig.ui)
  6914. +kde4_add_plugin(concentrationCalculator ${concentrationCalculator_SRCS})
  6915.  target_link_libraries(concentrationCalculator
  6916. -                      KF5::Plasma KF5::WidgetsAddons
  6917. -                      KF5::UnitConversion
  6918. +                      ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS}
  6919. +                      ${KDE4_KUNITCONVERSION_LIBRARY}
  6920.                        )
  6921.  
  6922.  install(TARGETS concentrationCalculator DESTINATION ${PLUGIN_INSTALL_DIR})
  6923. diff --git a/plasmoid/applet/concentrationPlasmoid/CMakeLists.txt~ b/plasmoid/applet/concentrationPlasmoid/CMakeLists.txt~
  6924. deleted file mode 100644
  6925. index 6edb01f5b1c451b32d7de0bab29ffac53f1f3d73..0000000000000000000000000000000000000000
  6926. --- a/plasmoid/applet/concentrationPlasmoid/CMakeLists.txt~
  6927. +++ /dev/null
  6928. @@ -1,13 +0,0 @@
  6929. -project(concentrationCalculator)
  6930. -
  6931. -set(concentrationCalculator_SRCS concentrationCalculator.cpp)
  6932. -qt5_wrap_ui(concentrationCalculator_SRCS concentrationCalculatorConfig.ui)
  6933. -add_library(concentrationCalculator ${concentrationCalculator_SRCS})
  6934. -target_link_libraries(concentrationCalculator
  6935. -                      ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS}
  6936. -                      ${KDE4_KUNITCONVERSION_LIBRARY}
  6937. -                      )
  6938. -
  6939. -install(TARGETS concentrationCalculator DESTINATION ${PLUGIN_INSTALL_DIR})
  6940. -
  6941. -install(FILES concentrationCalculator.desktop DESTINATION ${SERVICES_INSTALL_DIR})
  6942. diff --git a/plasmoid/applet/didyouknow/CMakeLists.txt b/plasmoid/applet/didyouknow/CMakeLists.txt
  6943. index 0079fd31acf99cadd29577cdbd8d822296829931..f6ca9e381335cf9af675bb3b0b0e134692629fe5 100644
  6944. --- a/plasmoid/applet/didyouknow/CMakeLists.txt
  6945. +++ b/plasmoid/applet/didyouknow/CMakeLists.txt
  6946. @@ -1,13 +1,15 @@
  6947. -#include_directories(${CMAKE_SOURCE_DIR}/libkdeedu/libscience/)
  6948. +include_directories(
  6949. +   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/
  6950. +   )
  6951.  
  6952.  set(didyouknow_plasma_SRCS
  6953.      didyouknow.cpp
  6954.      )
  6955.  
  6956. -add_library(plasma_applet_didyouknow ${didyouknow_plasma_SRCS})
  6957. +kde4_add_plugin(plasma_applet_didyouknow ${didyouknow_plasma_SRCS})
  6958.  
  6959.  target_link_libraries(plasma_applet_didyouknow
  6960. -    KF5::Plasma KF5::KIOWidgests
  6961. +    ${KDE4_PLASMA_LIBS} ${KDE4_KIO_LIBS}
  6962.      science
  6963.      )
  6964.  
  6965. diff --git a/plasmoid/applet/didyouknow/CMakeLists.txt~ b/plasmoid/applet/didyouknow/CMakeLists.txt~
  6966. deleted file mode 100644
  6967. index f6ca9e381335cf9af675bb3b0b0e134692629fe5..0000000000000000000000000000000000000000
  6968. --- a/plasmoid/applet/didyouknow/CMakeLists.txt~
  6969. +++ /dev/null
  6970. @@ -1,23 +0,0 @@
  6971. -include_directories(
  6972. -   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/
  6973. -   )
  6974. -
  6975. -set(didyouknow_plasma_SRCS
  6976. -    didyouknow.cpp
  6977. -    )
  6978. -
  6979. -kde4_add_plugin(plasma_applet_didyouknow ${didyouknow_plasma_SRCS})
  6980. -
  6981. -target_link_libraries(plasma_applet_didyouknow
  6982. -    ${KDE4_PLASMA_LIBS} ${KDE4_KIO_LIBS}
  6983. -    science
  6984. -    )
  6985. -
  6986. -install(TARGETS plasma_applet_didyouknow DESTINATION ${PLUGIN_INSTALL_DIR})
  6987. -
  6988. -install(FILES plasma_didyouknow.desktop DESTINATION ${SERVICES_INSTALL_DIR})
  6989. -
  6990. -install(
  6991. -    FILES chalkboard.svg
  6992. -    DESTINATION ${DATA_INSTALL_DIR}/desktoptheme/default/widgets/
  6993. -    )
  6994. diff --git a/plasmoid/applet/gasPlasmoid/CMakeLists.txt b/plasmoid/applet/gasPlasmoid/CMakeLists.txt
  6995. index 81053807fc53cf61b6abe65752e3636efd618214..7d199bb6ec01d1c81b2ff54d348418fcce05674c 100644
  6996. --- a/plasmoid/applet/gasPlasmoid/CMakeLists.txt
  6997. +++ b/plasmoid/applet/gasPlasmoid/CMakeLists.txt
  6998. @@ -1,11 +1,11 @@
  6999.  project(gasCalculator)
  7000.  
  7001.  set(gasCalculator_SRCS gasCalculator.cpp)
  7002. -qt5_wrap_ui(gasCalculator_SRCS gasCalculatorConfig.ui)
  7003. -add_library(gasCalculator ${gasCalculator_SRCS})
  7004. +kde4_add_ui_files(gasCalculator_SRCS gasCalculatorConfig.ui)
  7005. +kde4_add_plugin(gasCalculator ${gasCalculator_SRCS})
  7006.  target_link_libraries(gasCalculator
  7007. -                      KF5::Plasma KF5::Ui KF5::WidgetsAddons
  7008. -                      KF5::UnitConversion
  7009. +                      ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS}
  7010. +                      ${KDE4_KUNITCONVERSION_LIBRARY}
  7011.                        )
  7012.  
  7013.  install(TARGETS gasCalculator DESTINATION ${PLUGIN_INSTALL_DIR})
  7014. diff --git a/plasmoid/applet/gasPlasmoid/CMakeLists.txt~ b/plasmoid/applet/gasPlasmoid/CMakeLists.txt~
  7015. deleted file mode 100644
  7016. index 7d199bb6ec01d1c81b2ff54d348418fcce05674c..0000000000000000000000000000000000000000
  7017. --- a/plasmoid/applet/gasPlasmoid/CMakeLists.txt~
  7018. +++ /dev/null
  7019. @@ -1,13 +0,0 @@
  7020. -project(gasCalculator)
  7021. -
  7022. -set(gasCalculator_SRCS gasCalculator.cpp)
  7023. -kde4_add_ui_files(gasCalculator_SRCS gasCalculatorConfig.ui)
  7024. -kde4_add_plugin(gasCalculator ${gasCalculator_SRCS})
  7025. -target_link_libraries(gasCalculator
  7026. -                      ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS}
  7027. -                      ${KDE4_KUNITCONVERSION_LIBRARY}
  7028. -                      )
  7029. -
  7030. -install(TARGETS gasCalculator DESTINATION ${PLUGIN_INSTALL_DIR})
  7031. -
  7032. -install(FILES gasCalculator.desktop DESTINATION ${SERVICES_INSTALL_DIR})
  7033. diff --git a/plasmoid/applet/nuclearPlasmoid/CMakeLists.txt b/plasmoid/applet/nuclearPlasmoid/CMakeLists.txt
  7034. index 90c77a9e479ead3d8b8899147030a15226d2596e..4acfab68360588a2e315a8dbb9dda46666f54d5e 100644
  7035. --- a/plasmoid/applet/nuclearPlasmoid/CMakeLists.txt
  7036. +++ b/plasmoid/applet/nuclearPlasmoid/CMakeLists.txt
  7037. @@ -1,16 +1,18 @@
  7038.  project(nuclearCalculator)
  7039.  
  7040. -#include_directories(   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/)
  7041. +include_directories(
  7042. +   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/
  7043. +   )
  7044.  
  7045.  set(nuclearCalculator_SRCS
  7046.     nuclearCalculator.cpp
  7047.     kalziumdataobject.cpp
  7048.     )
  7049. -qt5_wrap_ui(nuclearCalculator_SRCS nuclearCalculatorConfig.ui)
  7050. -add_library(nuclearCalculator ${nuclearCalculator_SRCS})
  7051. +kde4_add_ui_files(nuclearCalculator_SRCS nuclearCalculatorConfig.ui)
  7052. +kde4_add_plugin(nuclearCalculator ${nuclearCalculator_SRCS})
  7053.  target_link_libraries(nuclearCalculator
  7054. -                      KF5::Plasma KF5::Ui KF5::KHtml
  7055. -                      science KF5::UnitConversion
  7056. +                      ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KHTML_LIBRARY}
  7057. +                      science ${KDE4_KUNITCONVERSION_LIBRARY}
  7058.                        )
  7059.  
  7060.  install(TARGETS nuclearCalculator DESTINATION ${PLUGIN_INSTALL_DIR})
  7061. diff --git a/plasmoid/applet/nuclearPlasmoid/CMakeLists.txt~ b/plasmoid/applet/nuclearPlasmoid/CMakeLists.txt~
  7062. deleted file mode 100644
  7063. index 4acfab68360588a2e315a8dbb9dda46666f54d5e..0000000000000000000000000000000000000000
  7064. --- a/plasmoid/applet/nuclearPlasmoid/CMakeLists.txt~
  7065. +++ /dev/null
  7066. @@ -1,20 +0,0 @@
  7067. -project(nuclearCalculator)
  7068. -
  7069. -include_directories(
  7070. -   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/
  7071. -   )
  7072. -
  7073. -set(nuclearCalculator_SRCS
  7074. -   nuclearCalculator.cpp
  7075. -   kalziumdataobject.cpp
  7076. -   )
  7077. -kde4_add_ui_files(nuclearCalculator_SRCS nuclearCalculatorConfig.ui)
  7078. -kde4_add_plugin(nuclearCalculator ${nuclearCalculator_SRCS})
  7079. -target_link_libraries(nuclearCalculator
  7080. -                      ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KHTML_LIBRARY}
  7081. -                      science ${KDE4_KUNITCONVERSION_LIBRARY}
  7082. -                      )
  7083. -
  7084. -install(TARGETS nuclearCalculator DESTINATION ${PLUGIN_INSTALL_DIR})
  7085. -
  7086. -install(FILES nuclearCalculator.desktop DESTINATION ${SERVICES_INSTALL_DIR})
  7087. diff --git a/plasmoid/applet/psePlasmoid/CMakeLists.txt b/plasmoid/applet/psePlasmoid/CMakeLists.txt
  7088. index c837bfd714d2da89baba9ca00cbc044398ecb6a8..58da62f980f38766747e1d0d72101ce4eb8c662a 100644
  7089. --- a/plasmoid/applet/psePlasmoid/CMakeLists.txt
  7090. +++ b/plasmoid/applet/psePlasmoid/CMakeLists.txt
  7091. @@ -8,13 +8,13 @@ include_directories(
  7092.  # We add our source code here
  7093.  set(periodic_SRCS Molmasscalculator.cpp Periodictable.cpp)
  7094.  
  7095. -qt5_wrap_ui(periodic_SRCS Molmassconfig.ui)
  7096. +kde4_add_ui_files(periodic_SRCS Molmassconfig.ui)
  7097.  
  7098.  # Now make sure all files get to the right place
  7099. -add_library(plasma_applet_molmassCalculator ${periodic_SRCS})
  7100. +kde4_add_plugin(plasma_applet_molmassCalculator ${periodic_SRCS})
  7101.  
  7102.  target_link_libraries(plasma_applet_molmassCalculator
  7103. -                      KF5::Plasma KF5::WidgetAddons science)
  7104. +                      ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} science)
  7105.  
  7106.  install(TARGETS plasma_applet_molmassCalculator
  7107.          DESTINATION ${PLUGIN_INSTALL_DIR})
  7108. diff --git a/plasmoid/applet/psePlasmoid/CMakeLists.txt~ b/plasmoid/applet/psePlasmoid/CMakeLists.txt~
  7109. deleted file mode 100644
  7110. index 58da62f980f38766747e1d0d72101ce4eb8c662a..0000000000000000000000000000000000000000
  7111. --- a/plasmoid/applet/psePlasmoid/CMakeLists.txt~
  7112. +++ /dev/null
  7113. @@ -1,23 +0,0 @@
  7114. -include_directories(
  7115. -   ${CMAKE_SOURCE_DIR}
  7116. -   ${CMAKE_BINARY_DIR}
  7117. -   ${KDE4_INCLUDES}
  7118. -   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience
  7119. -   )
  7120. -
  7121. -# We add our source code here
  7122. -set(periodic_SRCS Molmasscalculator.cpp Periodictable.cpp)
  7123. -
  7124. -kde4_add_ui_files(periodic_SRCS Molmassconfig.ui)
  7125. -
  7126. -# Now make sure all files get to the right place
  7127. -kde4_add_plugin(plasma_applet_molmassCalculator ${periodic_SRCS})
  7128. -
  7129. -target_link_libraries(plasma_applet_molmassCalculator
  7130. -                      ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} science)
  7131. -
  7132. -install(TARGETS plasma_applet_molmassCalculator
  7133. -        DESTINATION ${PLUGIN_INSTALL_DIR})
  7134. -
  7135. -install(FILES plasma-applet-Molmasscalculator.desktop
  7136. -        DESTINATION ${SERVICES_INSTALL_DIR})
  7137. diff --git a/plasmoid/engine/CMakeLists.txt b/plasmoid/engine/CMakeLists.txt
  7138. index 8b4bcb0ea5363407a0bfb645faa16c97c9ee4cbb..534a56d7d59ade19bc426f263bdca38f7efca0a2 100644
  7139. --- a/plasmoid/engine/CMakeLists.txt
  7140. +++ b/plasmoid/engine/CMakeLists.txt
  7141. @@ -6,10 +6,10 @@ include_directories(
  7142.     ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/
  7143.     )
  7144.  
  7145. -add_library(plasma_engine_kalzium ${kalzium_engine_SRCS})
  7146. +kde4_add_plugin(plasma_engine_kalzium ${kalzium_engine_SRCS})
  7147.  target_link_libraries(plasma_engine_kalzium
  7148. -   KF5::Plasma
  7149. -   Qt5::Xml
  7150. +   ${KDE4_PLASMA_LIBS}
  7151. +   ${QT_QTXML_LIBRARY}
  7152.     science
  7153.  )
  7154.  
  7155. diff --git a/plasmoid/engine/CMakeLists.txt~ b/plasmoid/engine/CMakeLists.txt~
  7156. deleted file mode 100644
  7157. index 534a56d7d59ade19bc426f263bdca38f7efca0a2..0000000000000000000000000000000000000000
  7158. --- a/plasmoid/engine/CMakeLists.txt~
  7159. +++ /dev/null
  7160. @@ -1,17 +0,0 @@
  7161. -set(kalzium_engine_SRCS
  7162. -    kalzium_engine.cpp
  7163. -)
  7164. -
  7165. -include_directories(
  7166. -   ${CMAKE_SOURCE_DIR}/libkdeedu/libscience/
  7167. -   )
  7168. -
  7169. -kde4_add_plugin(plasma_engine_kalzium ${kalzium_engine_SRCS})
  7170. -target_link_libraries(plasma_engine_kalzium
  7171. -   ${KDE4_PLASMA_LIBS}
  7172. -   ${QT_QTXML_LIBRARY}
  7173. -   science
  7174. -)
  7175. -
  7176. -install(TARGETS plasma_engine_kalzium DESTINATION ${PLUGIN_INSTALL_DIR})
  7177. -install(FILES plasma-dataengine-kalzium.desktop DESTINATION ${SERVICES_INSTALL_DIR})
  7178. diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
  7179. index 41df92e2659994398d97242c41acb08d5093fa1a..3cefc58691dddf4ac96d782dd68b567a9ff82ff2 100644
  7180. --- a/src/CMakeLists.txt
  7181. +++ b/src/CMakeLists.txt
  7182. @@ -18,7 +18,7 @@ if (OPENBABEL2_FOUND)
  7183.        tools/obconverter.cpp
  7184.        )
  7185.  
  7186. -   qt5_wrap_ui(kalziumtools_SRCS
  7187. +   kde4_add_ui_files(kalziumtools_SRCS
  7188.        tools/obconverterwidget.ui
  7189.        )
  7190.     include_directories(${OPENBABEL2_INCLUDE_DIR})
  7191. @@ -32,7 +32,7 @@ if (OPENBABEL2_FOUND)
  7192.           tools/moleculeview.cpp
  7193.           ../compoundviewer/kalziumglwidget.cpp
  7194.           )
  7195. -      qt5_wrap_ui(kalziumtools_SRCS
  7196. +      kde4_add_ui_files(kalziumtools_SRCS
  7197.           tools/moleculeviewerwidget.ui
  7198.           )
  7199.        include_directories(${EIGEN3_INCLUDE_DIR})
  7200. @@ -49,7 +49,7 @@ set(kalziumtools_SRCS
  7201.     calculator/titrationCalculator.cpp
  7202.  #   calculator/massCalculator.cpp
  7203.     )
  7204. -qt5_wrap_ui(kalziumtools_SRCS
  7205. +kde4_add_ui_files(kalziumtools_SRCS
  7206.     calculator/calculator.ui
  7207.     calculator/nuclearCalculator.ui
  7208.     calculator/gasCalculator.ui
  7209. @@ -110,12 +110,12 @@ if (LIBFACILE_FOUND)
  7210.        ${CMAKE_CURRENT_BINARY_DIR}/solver.o
  7211.        ${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
  7212.        )
  7213. -   qt5_wrap_ui(kalzium_SRCS
  7214. +   kde4_add_ui_files(kalzium_SRCS
  7215.        equationview.ui
  7216.        )
  7217.  endif (LIBFACILE_FOUND)
  7218.  
  7219. -qt5_wrap_ui(kalzium_SRCS
  7220. +kde4_add_ui_files(kalzium_SRCS
  7221.     isotopetable/isotopedialog.ui
  7222.     settings_colors.ui
  7223.     plotsetupwidget.ui
  7224. @@ -127,14 +127,14 @@ qt5_wrap_ui(kalzium_SRCS
  7225.     exportdialog.ui
  7226.     )
  7227.  
  7228. -kconfig_add_kcfg_files(kalzium_SRCS prefs.kcfgc )
  7229. +kde4_add_kcfg_files(kalzium_SRCS prefs.kcfgc )
  7230.  
  7231. -#kde4_add_app_icon(kalzium_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/hi*-app-kalzium.png")
  7232. +kde4_add_app_icon(kalzium_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/hi*-app-kalzium.png")
  7233.  
  7234. -add_executable(kalzium ${kalzium_SRCS})
  7235. +kde4_add_executable(kalzium ${kalzium_SRCS})
  7236. +
  7237. +target_link_libraries(kalzium ${KDE4_KHTML_LIBRARY} ${KDE4_KNEWSTUFF3_LIBS} ${KDE4_KUNITCONVERSION_LIBS} ${QT_QTSCRIPT_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY} science)
  7238.  
  7239. -target_link_libraries(kalzium KDE5::KHTML KDE5::NewStuff KDE4_KUNITCONVERSION_LIBS Qt5::Script  Qt5::Declarative science)
  7240. -#QT_QTSCRIPT_LIBRARY
  7241.  if (OPENBABEL2_FOUND)
  7242.     target_link_libraries(kalzium ${OPENBABEL2_LIBRARIES})
  7243.     if (EIGEN3_FOUND AND Avogadro_FOUND)
  7244. @@ -174,4 +174,4 @@ install(FILES kalzium.kcfg DESTINATION ${KCFG_INSTALL_DIR})
  7245.  install(FILES kalziumui.rc DESTINATION ${DATA_INSTALL_DIR}/kalzium)
  7246.  install(FILES kalzium.knsrc DESTINATION ${CONFIG_INSTALL_DIR})
  7247.  
  7248. -#kde4_install_icons(${ICON_INSTALL_DIR})
  7249. +kde4_install_icons(${ICON_INSTALL_DIR})
  7250. diff --git a/src/CMakeLists.txt~ b/src/CMakeLists.txt~
  7251. deleted file mode 100644
  7252. index 4745ffbba9f493e9d02b58e1d68d128de9c1e067..0000000000000000000000000000000000000000
  7253. --- a/src/CMakeLists.txt~
  7254. +++ /dev/null
  7255. @@ -1,177 +0,0 @@
  7256. -include_directories(
  7257. -   ${CMAKE_SOURCE_DIR}/libscience/
  7258. -   ../compoundviewer
  7259. -   tools
  7260. -   calculator
  7261. -   psetable
  7262. -   isotopetable
  7263. -   ${CMAKE_CURRENT_BINARY_DIR}/..
  7264. -   )
  7265. -
  7266. -########### next target ###############
  7267. -
  7268. -# The tools can only be built when OpenBabel2 is found.
  7269. -# The moleculeviewer needs not only OpenBabel2 but also Eigen2 and Avogadro,
  7270. -# so there is a nested if-check.
  7271. -if (OPENBABEL2_FOUND)
  7272. -   set(kalziumtools_SRCS
  7273. -      tools/obconverter.cpp
  7274. -      )
  7275. -
  7276. -   qt5_wrap_ui(kalziumtools_SRCS
  7277. -      tools/obconverterwidget.ui
  7278. -      )
  7279. -   include_directories(${OPENBABEL2_INCLUDE_DIR})
  7280. -
  7281. -   if (EIGEN3_FOUND AND Avogadro_FOUND)
  7282. -
  7283. -      include(${Avogadro_USE_FILE})
  7284. -
  7285. -      set(kalziumtools_SRCS
  7286. -         ${kalziumtools_SRCS}
  7287. -         tools/moleculeview.cpp
  7288. -         ../compoundviewer/kalziumglwidget.cpp
  7289. -         )
  7290. -      qt5_wrap_ui(kalziumtools_SRCS
  7291. -         tools/moleculeviewerwidget.ui
  7292. -         )
  7293. -      include_directories(${EIGEN3_INCLUDE_DIR})
  7294. -   endif (EIGEN3_FOUND AND Avogadro_FOUND)
  7295. -endif (OPENBABEL2_FOUND)
  7296. -
  7297. -## Kalzium calculator files
  7298. -set(kalziumtools_SRCS
  7299. -   ${kalziumtools_SRCS}
  7300. -   calculator/calculator.cpp
  7301. -   calculator/nuclearCalculator.cpp
  7302. -   calculator/gasCalculator.cpp
  7303. -   calculator/concCalculator.cpp
  7304. -   calculator/titrationCalculator.cpp
  7305. -#  calculator/massCalculator.cpp
  7306. -   )
  7307. -qt5_wrap_ui(kalziumtools_SRCS
  7308. -   calculator/calculator.ui
  7309. -   calculator/nuclearCalculator.ui
  7310. -   calculator/gasCalculator.ui
  7311. -   calculator/concCalculator.ui
  7312. -   calculator/settings_calc.ui
  7313. -   calculator/titrationCalculator.ui
  7314. -#  calculator/massCalculator.ui
  7315. -   )
  7316. -
  7317. -set(kalzium_SRCS
  7318. -   ${kalziumtools_SRCS}
  7319. -   isotopetable/informationitem.cpp
  7320. -   isotopetable/isotopeguideview.cpp
  7321. -   isotopetable/isotopeitem.cpp
  7322. -   isotopetable/isotopescene.cpp
  7323. -   isotopetable/isotopetabledialog.cpp
  7324. -   isotopetable/isotopeview.cpp
  7325. -   psetable/elementitem.cpp
  7326. -   psetable/numerationitem.cpp
  7327. -   psetable/periodictableview.cpp
  7328. -   psetable/periodictablescene.cpp
  7329. -   psetable/periodictablestates.cpp
  7330. -   psetable/statemachine.cpp
  7331. -   kalzium.cpp
  7332. -   main.cpp
  7333. -   detailinfodlg.cpp
  7334. -   tablesdialog.cpp
  7335. -   detailedgraphicaloverview.cpp
  7336. -   orbitswidget.cpp
  7337. -   elementdataviewer.cpp
  7338. -   molcalcwidget.cpp
  7339. -   gradientwidget_impl.cpp
  7340. -   kalziumdataobject.cpp
  7341. -   kalziumutils.cpp
  7342. -   kalziumgradienttype.cpp
  7343. -   kalziumnumerationtype.cpp
  7344. -   kalziumelementproperty.cpp
  7345. -   kalziumschemetype.cpp
  7346. -   kalziumunitcombobox.cpp
  7347. -   unitsettingsdialog.cpp
  7348. -   search.cpp
  7349. -   searchwidget.cpp
  7350. -   rsdialog.cpp
  7351. -   legendwidget.cpp
  7352. -   exportdialog.cpp
  7353. -   tableinfowidget.cpp
  7354. -   spectrumviewimpl.cpp
  7355. -   spectrumwidget.cpp
  7356. -   kdeeduglossary.cpp
  7357. -   )
  7358. -
  7359. -if (LIBFACILE_FOUND)
  7360. -   include(CMakeOCamlInstructions.cmake)
  7361. -
  7362. -   set(kalzium_SRCS
  7363. -      ${kalzium_SRCS}
  7364. -      eqchemview.cpp
  7365. -      ${CMAKE_CURRENT_BINARY_DIR}/solver.o
  7366. -      ${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
  7367. -      )
  7368. -   qt5_wrap_ui(kalzium_SRCS
  7369. -      equationview.ui
  7370. -      )
  7371. -endif (LIBFACILE_FOUND)
  7372. -
  7373. -qt5_wrap_ui(kalzium_SRCS
  7374. -   isotopetable/isotopedialog.ui
  7375. -   settings_colors.ui
  7376. -   plotsetupwidget.ui
  7377. -   molcalcwidgetbase.ui
  7378. -   spectrumview.ui
  7379. -   settings_gradients.ui
  7380. -   rswidget.ui
  7381. -   gradientwidget.ui
  7382. -   exportdialog.ui
  7383. -   )
  7384. -
  7385. -kconfig_add_kcfg_files(kalzium_SRCS prefs.kcfgc )
  7386. -
  7387. -kde4_add_app_icon(kalzium_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/hi*-app-kalzium.png")
  7388. -
  7389. -add_executable(kalzium ${kalzium_SRCS})
  7390. -
  7391. -target_link_libraries(kalzium ${KDE4_KHTML_LIBRARY} ${KDE4_KNEWSTUFF3_LIBS} ${KDE4_KUNITCONVERSION_LIBS} ${QT_QTSCRIPT_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY} science)
  7392. -
  7393. -if (OPENBABEL2_FOUND)
  7394. -   target_link_libraries(kalzium ${OPENBABEL2_LIBRARIES})
  7395. -   if (EIGEN3_FOUND AND Avogadro_FOUND)
  7396. -      target_link_libraries(kalzium ${QT_QTOPENGL_LIBRARY} compoundviewer avogadro)
  7397. -   endif (EIGEN3_FOUND AND Avogadro_FOUND)
  7398. -endif (OPENBABEL2_FOUND)
  7399. -
  7400. -if (LIBFACILE_FOUND)
  7401. -   link_directories(${OCAMLC_DIR})
  7402. -   set(CMAKE_LIBRARY_PATH ${OCAMLC_DIR})
  7403. -   set(kalzium_EXTRA_LIBS)
  7404. -
  7405. -   find_library(OCAML_ASMRUN_LIBRARY NAMES asmrun)
  7406. -   if (OCAML_ASMRUN_LIBRARY)
  7407. -      set(kalzium_EXTRA_LIBS ${kalzium_EXTRA_LIBS} ${OCAML_ASMRUN_LIBRARY})
  7408. -   endif (OCAML_ASMRUN_LIBRARY)
  7409. -
  7410. -   find_library(OCAML_STR_LIBRARY NAMES str)
  7411. -   if (OCAML_STR_LIBRARY)
  7412. -      set(kalzium_EXTRA_LIBS ${kalzium_EXTRA_LIBS} ${OCAML_STR_LIBRARY})
  7413. -   endif (OCAML_STR_LIBRARY)
  7414. -
  7415. -   find_library(OCAML_NUMS_LIBRARY NAMES nums)
  7416. -   if (OCAML_NUMS_LIBRARY)
  7417. -      set(kalzium_EXTRA_LIBS ${kalzium_EXTRA_LIBS} ${OCAML_NUMS_LIBRARY})
  7418. -   endif (OCAML_NUMS_LIBRARY)
  7419. -
  7420. -   target_link_libraries(kalzium ${kalzium_EXTRA_LIBS} m ${CMAKE_DL_LIBS})
  7421. -endif (LIBFACILE_FOUND)
  7422. -
  7423. -install(TARGETS kalzium ${INSTALL_TARGETS_DEFAULT_ARGS})
  7424. -
  7425. -########### install files ###############
  7426. -
  7427. -install(PROGRAMS kalzium.desktop kalzium_cml.desktop DESTINATION ${XDG_APPS_INSTALL_DIR})
  7428. -install(FILES kalzium.kcfg DESTINATION ${KCFG_INSTALL_DIR})
  7429. -install(FILES kalziumui.rc DESTINATION ${DATA_INSTALL_DIR}/kalzium)
  7430. -install(FILES kalzium.knsrc DESTINATION ${CONFIG_INSTALL_DIR})
  7431. -
  7432. -kde4_install_icons(${ICON_INSTALL_DIR})
  7433. diff --git a/src/kalzium.desktop b/src/kalzium.desktop
  7434. old mode 100644
  7435. new mode 100755
Advertisement
Add Comment
Please, Sign In to add comment