mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-25 08:45:00 +00:00
14 lines
247 B
CMake
14 lines
247 B
CMake
|
|
# Sources for the pcbnew PLUGIN called IPC2581_PLUGIN
|
|
|
|
include_directories( ${CMAKE_CURRENT_SOURCE_DIR} )
|
|
|
|
|
|
set( IPC2581_SRCS
|
|
pcb_io_ipc2581.cpp
|
|
)
|
|
|
|
add_library( ipc2581 STATIC ${IPC2581_SRCS} )
|
|
|
|
target_link_libraries( ipc2581 pcbcommon )
|