8 lines
127 B
CMake
8 lines
127 B
CMake
add_library(data-structures STATIC
|
|
impl/ListDataStructure.cpp
|
|
)
|
|
|
|
target_link_libraries(data-structures PUBLIC
|
|
common
|
|
)
|