15 lines
246 B
CMake
15 lines
246 B
CMake
|
# Copyright 2023 The LightningBolt Authors
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
add_library(lb_bolt
|
||
|
Errors.cpp
|
||
|
Compression.cpp
|
||
|
Reader.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(lb_bolt PUBLIC
|
||
|
lb::base
|
||
|
)
|
||
|
|
||
|
lb_target(lb_bolt)
|
||
|
add_library(lb::bolt ALIAS lb_bolt)
|