mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-25 08:45:00 +00:00
15 lines
284 B
CMake
15 lines
284 B
CMake
|
|
# Sources for the pcbnew PLUGIN called EASYEDA_PLUGIN
|
|
|
|
include_directories( ${CMAKE_CURRENT_SOURCE_DIR} )
|
|
|
|
|
|
set( EASYEDA_SRCS
|
|
pcb_io_easyeda_plugin.cpp
|
|
pcb_io_easyeda_parser.cpp
|
|
)
|
|
|
|
add_library( easyeda STATIC ${EASYEDA_SRCS} )
|
|
|
|
target_link_libraries( easyeda pcbcommon )
|