2018-11-23 13:21:17 +00:00
|
|
|
set(sources
|
2018-12-17 14:00:39 +00:00
|
|
|
Algorithms.h
|
2019-02-01 14:39:18 +00:00
|
|
|
AnsiColorized.h
|
2018-12-17 14:00:39 +00:00
|
|
|
Assertions.h
|
|
|
|
Common.h
|
2018-11-23 13:21:17 +00:00
|
|
|
CommonData.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
CommonData.h
|
2018-11-23 13:21:17 +00:00
|
|
|
CommonIO.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
CommonIO.h
|
2018-11-23 13:21:17 +00:00
|
|
|
Exceptions.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
Exceptions.h
|
|
|
|
FixedHash.h
|
2018-11-23 13:21:17 +00:00
|
|
|
IndentedWriter.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
IndentedWriter.h
|
2019-05-27 18:27:06 +00:00
|
|
|
InvertibleMap.h
|
2019-04-25 17:53:21 +00:00
|
|
|
IpfsHash.cpp
|
|
|
|
IpfsHash.h
|
2018-11-23 13:21:17 +00:00
|
|
|
JSON.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
JSON.h
|
2018-11-23 13:21:17 +00:00
|
|
|
Keccak256.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
Keccak256.h
|
2019-04-25 17:53:21 +00:00
|
|
|
picosha2.h
|
2018-12-17 14:00:39 +00:00
|
|
|
Result.h
|
2018-11-23 13:21:17 +00:00
|
|
|
StringUtils.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
StringUtils.h
|
2018-11-23 13:21:17 +00:00
|
|
|
SwarmHash.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
SwarmHash.h
|
2018-11-23 13:21:17 +00:00
|
|
|
UTF8.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
UTF8.h
|
|
|
|
vector_ref.h
|
|
|
|
Visitor.h
|
2018-11-23 13:21:17 +00:00
|
|
|
Whiskers.cpp
|
2018-12-17 14:00:39 +00:00
|
|
|
Whiskers.h
|
2018-11-23 13:21:17 +00:00
|
|
|
)
|
2017-08-16 12:26:19 +00:00
|
|
|
|
2018-11-23 13:21:17 +00:00
|
|
|
add_library(devcore ${sources})
|
2019-10-16 00:31:41 +00:00
|
|
|
target_link_libraries(devcore PUBLIC jsoncpp Boost::boost Boost::filesystem Boost::system)
|
2017-08-22 14:43:30 +00:00
|
|
|
target_include_directories(devcore PUBLIC "${CMAKE_SOURCE_DIR}")
|
2017-08-16 12:26:19 +00:00
|
|
|
add_dependencies(devcore solidity_BuildInfo.h)
|
2019-10-01 22:30:38 +00:00
|
|
|
|
|
|
|
if(SOLC_LINK_STATIC)
|
|
|
|
target_link_libraries(devcore PUBLIC Threads::Threads)
|
|
|
|
endif()
|