forked from ethereum/solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of /home/wins/Ethereum/repomove/libethereum in…
…to moveliblll
- Loading branch information
Showing
11 changed files
with
1,181 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#pragma once | ||
|
||
#include "CodeFragment.h" | ||
#include "Compiler.h" | ||
#include "CompilerState.h" | ||
#include "Parser.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
cmake_policy(SET CMP0015 NEW) | ||
set(CMAKE_AUTOMOC OFF) | ||
|
||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSTATICLIB") | ||
|
||
aux_source_directory(. SRC_LIST) | ||
|
||
#include_directories(BEFORE ${JSONCPP_INCLUDE_DIRS}) | ||
include_directories(BEFORE ..) | ||
#include_directories(${Boost_INCLUDE_DIRS}) | ||
|
||
set(EXECUTABLE lll) | ||
|
||
file(GLOB HEADERS "*.h") | ||
|
||
add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) | ||
|
||
eth_use(${EXECUTABLE} REQUIRED Eth::evmasm) | ||
#target_link_libraries(${EXECUTABLE} evmasm) | ||
|
||
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) | ||
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} ) | ||
|
Oops, something went wrong.