mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
306 B
CMake
14 lines
306 B
CMake
# Solidity Commons Library (Solidity related sharing bits between libsolidity and libyul)
|
|
set(sources
|
|
CharStream.cpp
|
|
ErrorReporter.cpp
|
|
Exceptions.cpp
|
|
ParserBase.cpp
|
|
Scanner.cpp
|
|
SourceReferenceFormatter.cpp
|
|
Token.cpp
|
|
)
|
|
|
|
add_library(langutil ${sources})
|
|
target_link_libraries(langutil PUBLIC devcore)
|