You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
3.6 KiB

Make the new schematic and symbol library file formats the default. This is a very large and potentially disruptive change so this will be an unusually long and detailed commit message. The new file formats are now the default in both the schematic and symbol library editors. Existing symbol libraries will be saved in their current format until new features are added to library symbols. Once this happens, both the legacy schematic and symbol file formats will be no longer be savable and existing libraries will have to be converted. Saving to the legacy file formats is still available for round robin testing and should not be used for normal editing. When loading the legacy schematic file, it is imperative that the schematic library symbols are rescued and/or remapped to valid library identifiers. Otherwise, there will be no way to link to the original library symbol and the user will be required manually set the library identifier. The cached symbol will be saved in the schematic file so the last library symbol in the cache will still be used but there will be no way to update it from the original library. The next save after loading a legacy schematic file will be converted to the s-expression file format. Schematics with hierarchical sheets will automatically have all sheet file name extensions changed to .kicad_sym and saved to the new format as well. Appending schematics requires that the schematic to append has already been converted to the new file format. This is required to ensure that library symbols are guaranteed to be valid for the appended schematic. The schematic symbol library symbol link resolution has been moved out of the SCH_COMPONENT object and move into the SCH_SCREEN object that owns the symbol. This was done to ensure that there is a single place where the library symbol links get resolved rather than the dozen or so different code paths that previously existed. It also removes the necessity of the SCH_COMPONENT object of requiring any knowledge of the symbol library table and/or the cache library. When opening an s-expression schematic, the legacy cache library is not loaded so any library symbols not rescued cannot be loaded. Broken library symbol links will have to be manually resolved by adding the cache library to the symbol library table and changing the links in the schematic symbol. Now that the library symbols are embedded in the schematic file, the SCH_SCREEN object maintains the list of library symbols for the schematic automatically. No external manipulation of this library cache should ever occur. ADDED: S-expression schematic and symbol library file formats.
6 years ago
  1. #
  2. # This program source code file is part of KiCad, a free EDA CAD application.
  3. #
  4. # Copyright (C) 2017 CERN
  5. # @author Alejandro García Montoro <alejandro.garciamontoro@gmail.com>
  6. # Copyright (C) 2022 KiCad Developers, see AUTHORS.txt for contributors.
  7. #
  8. # This program is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU General Public License
  10. # as published by the Free Software Foundation; either version 2
  11. # of the License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, you may find one here:
  20. # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  21. # or you may search the http://www.gnu.org website for the version 2 license,
  22. # or you may write to the Free Software Foundation, Inc.,
  23. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  24. include_directories( BEFORE ${INC_BEFORE} )
  25. if( KICAD_SPICE )
  26. set( INC_AFTER ${INC_AFTER} ${NGSPICE_INCLUDE_DIR} )
  27. # Find out the exact libngspice file name
  28. get_filename_component( NGSPICE_DLL_ABSPATH "${NGSPICE_DLL}" ABSOLUTE )
  29. get_filename_component( NGSPICE_DLL_FILE "${NGSPICE_DLL_ABSPATH}" NAME )
  30. set_property( SOURCE sim/ngspice.cpp
  31. APPEND PROPERTY COMPILE_DEFINITIONS
  32. NGSPICE_DLL_FILE="${NGSPICE_DLL_FILE}"
  33. )
  34. endif()
  35. include_directories(
  36. ${CMAKE_SOURCE_DIR}
  37. ${CMAKE_SOURCE_DIR}/include
  38. ${CMAKE_SOURCE_DIR}/pcbnew
  39. ${CMAKE_SOURCE_DIR}/qa/mocks/include
  40. ${CMAKE_SOURCE_DIR}/qa/qa_utils
  41. ${INC_AFTER}
  42. )
  43. set( QA_EESCHEMA_SRCS
  44. # need the mock Pgm for many functions
  45. ${CMAKE_SOURCE_DIR}/qa/mocks/kicad/common_mocks.cpp
  46. ${CMAKE_SOURCE_DIR}/qa/mocks/eeschema/mock_eeschema.cpp
  47. eeschema_test_utils.cpp
  48. uuid_test_utils.cpp
  49. # The main test entry points
  50. test_module.cpp
  51. # Base internal units (1=100nm) testing.
  52. test_sch_biu.cpp
  53. # Shared between programs, but dependent on the BIU
  54. ${CMAKE_SOURCE_DIR}/qa/unittests/common/test_format_units.cpp
  55. ${CMAKE_SOURCE_DIR}/qa/unittests/common/test_array_options.cpp
  56. sch_plugins/altium/test_altium_parser_sch.cpp
  57. test_eagle_plugin.cpp
  58. test_lib_part.cpp
  59. test_netlist_exporter_kicad.cpp
  60. test_netlist_exporter_spice.cpp
  61. test_ee_item.cpp
  62. test_pin_numbers.cpp
  63. test_sch_pin.cpp
  64. test_sch_rtree.cpp
  65. test_sch_reference_list.cpp
  66. test_sch_sheet.cpp
  67. test_sch_sheet_path.cpp
  68. test_sch_sheet_list.cpp
  69. test_sch_symbol.cpp
  70. )
  71. # Spice specific testing routine
  72. if( KICAD_SPICE )
  73. set( QA_EESCHEMA_SRCS
  74. ${QA_EESCHEMA_SRCS}
  75. # Simulation tests
  76. sim/test_library_spice.cpp
  77. sim/test_sim_model_ngspice.cpp
  78. sim/test_ngspice_helpers.cpp
  79. )
  80. endif()
  81. add_executable( qa_eeschema
  82. ${QA_EESCHEMA_SRCS}
  83. )
  84. target_link_libraries( qa_eeschema
  85. eeschema_kiface_objects
  86. common
  87. pcbcommon
  88. scripting
  89. kimath
  90. qa_utils
  91. markdown_lib
  92. ${GDI_PLUS_LIBRARIES}
  93. ${Boost_LIBRARIES}
  94. )
  95. # Eeschema tests, so pretend to be eeschema (for units, etc)
  96. target_compile_definitions( qa_eeschema
  97. PUBLIC EESCHEMA
  98. )
  99. # Pass in the default data location
  100. set_source_files_properties( eeschema_test_utils.cpp PROPERTIES
  101. COMPILE_DEFINITIONS "QA_EESCHEMA_DATA_LOCATION=(\"${CMAKE_SOURCE_DIR}/qa/data/eeschema\")"
  102. )
  103. kicad_add_boost_test( qa_eeschema qa_eeschema )