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
|
||
|
ipc2581_plugin.cpp
|
||
|
)
|
||
|
|
||
|
add_library( ipc2581 STATIC ${IPC2581_SRCS} )
|
||
|
|
||
|
target_link_libraries( ipc2581 pcbcommon )
|