mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-22 11:25:00 +00:00
23 lines
377 B
CMake
23 lines
377 B
CMake
include_directories( BEFORE ${INC_BEFORE} )
|
|
|
|
include_directories(
|
|
./
|
|
../
|
|
../../include
|
|
${INC_AFTER}
|
|
)
|
|
|
|
set( PCBNEW_CONN_SRCS
|
|
connectivity_algo.cpp
|
|
connectivity_data.cpp
|
|
connectivity_items.cpp
|
|
from_to_cache.cpp
|
|
topo_match.cpp
|
|
)
|
|
|
|
add_library( connectivity STATIC ${PCBNEW_CONN_SRCS} )
|
|
|
|
target_link_libraries( connectivity PRIVATE
|
|
common
|
|
)
|