15 lines
278 B
CMake
15 lines
278 B
CMake
|
|
||
|
# Sources for the pcbnew PLUGIN called EASYEDA_PLUGIN
|
||
|
|
||
|
include_directories( ${CMAKE_CURRENT_SOURCE_DIR} )
|
||
|
|
||
|
|
||
|
set( EASYEDA_SRCS
|
||
|
pcb_easyeda_plugin.cpp
|
||
|
pcb_easyeda_parser.cpp
|
||
|
)
|
||
|
|
||
|
add_library( easyeda STATIC ${EASYEDA_SRCS} )
|
||
|
|
||
|
target_link_libraries( easyeda pcbcommon )
|