2020-04-03 23:22:24 +00:00
|
|
|
|
|
|
|
# Sources for the pcbnew PLUGIN called ALTIUM_DESIGNER_PLUGIN, ALTIUM_CIRCUIT_STUDIO_PLUGIN and ALTIUM_CIRCUIT_MAKER_PLUGIN
|
|
|
|
|
|
|
|
set( ALTIUM2PCBNEW_SRCS
|
|
|
|
altium_parser_pcb.cpp
|
2021-03-21 15:37:02 +00:00
|
|
|
altium_pcb.cpp
|
|
|
|
altium_rule_transformer.cpp
|
2023-12-24 01:21:58 +00:00
|
|
|
pcb_io_altium_circuit_maker.cpp
|
|
|
|
pcb_io_altium_circuit_studio.cpp
|
|
|
|
pcb_io_altium_designer.cpp
|
|
|
|
pcb_io_solidworks.cpp
|
2020-04-03 23:22:24 +00:00
|
|
|
)
|
|
|
|
|
2020-08-23 19:01:08 +00:00
|
|
|
add_library( altium2pcbnew STATIC ${ALTIUM2PCBNEW_SRCS} )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
2022-01-02 02:21:49 +00:00
|
|
|
target_link_libraries( altium2pcbnew
|
|
|
|
pcbcommon
|
|
|
|
compoundfilereader )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
2022-01-02 02:21:49 +00:00
|
|
|
target_include_directories( altium2pcbnew
|
|
|
|
PUBLIC
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR} )
|
2023-06-16 00:41:56 +00:00
|
|
|
|
|
|
|
target_include_directories( altium2pcbnew PRIVATE
|
|
|
|
$<TARGET_PROPERTY:magic_enum,INTERFACE_INCLUDE_DIRECTORIES>
|
|
|
|
)
|