aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Solidity getInterfaceFunctions is now a map of hash to FunctionLefteris Karapetsas2015-01-071-0/+1
| | | | | | | - Also introduced dependency between libsolidity and libdevcrypto - Compler's appendFunctionSelector now has a first version of using function signature hash instead of index
* fixed styling issuesMarek Kotewicz2014-12-111-2/+3
|
* updated cmake policiesMarek Kotewicz2014-12-101-1/+1
|
* jsonrpc option in cmakes, removed all warningsMarek Kotewicz2014-12-101-0/+6
|
* solidity compiling under msvc && boosts cmake file fixeddebris2014-12-071-5/+4
|
* Merge branch 'develop' into build_enhancementMarek Kotewicz2014-12-071-0/+4
|\
| * Exporting Natspec documentation to a JSON interfaceLefteris Karapetsas2014-12-021-0/+4
| | | | | | | | | | | | | | | | | | | | | | - Adding a getDocumentation() function to solidity compiler stack so that we can obtain the natspec interface for a contract - Adding libjsoncpp as a dependency of libsolidity. This is done in a dirty way, using libjsonrpc-cpp s an intermediate dependency for the moment. Will fix soon. - Start of a test file for Natspec exporting to JSON
* | solidity compiling on windows, fixed Compiler Error C2797debris2014-12-061-2/+3
| |
* | removed automocsMarek Kotewicz2014-12-041-0/+1
|/
* add headers to solidity's add_libraryMarek Kotewicz2014-11-091-4/+3
|
* Moved instructions and assembly to new libevmcore.Christian2014-11-061-2/+1
|
* Contract compiler and also add ExpressionStatement to AST.Christian2014-10-301-2/+2
| | | | | | | | ExpressionStatement functions as glue between Statements and Expressions. This way it is possible to detect when the border between statements and expressions is crossed while walking the AST. Note that ExpressionStatement is not the only border, almost every statement can contains expressions.
* CMakeLists library dependency cleanup for libdevcore, libevmface, ↵Christian2014-10-261-26/+1
| | | | | | libsolidity and solc. Fixes #417.
* Solidity scanner and some unit tests.Christian2014-10-081-0/+49
The scanner is a modified version of the v8 javascript scanner.