15 lines
298 B
CMake
15 lines
298 B
CMake
|
|
# Sources for the pcbnew PLUGIN called EASYEDAPRO_PLUGIN
|
|
|
|
include_directories( ${CMAKE_CURRENT_SOURCE_DIR} )
|
|
|
|
|
|
set( EASYEDAPRO_SRCS
|
|
pcb_io_easyedapro.cpp
|
|
pcb_io_easyedapro_parser.cpp
|
|
)
|
|
|
|
add_library( easyedapro STATIC ${EASYEDAPRO_SRCS} )
|
|
|
|
target_link_libraries( easyedapro pcbcommon )
|