Skip to content

Commit

Permalink
Merge branch 'develop' of /home/wins/Ethereum/repomove/libethereum in…
Browse files Browse the repository at this point in the history
…to moveliblll
  • Loading branch information
winsvega committed Mar 21, 2016
2 parents e759a24 + e95dd92 commit a8f1b1b
Show file tree
Hide file tree
Showing 11 changed files with 1,181 additions and 0 deletions.
6 changes: 6 additions & 0 deletions liblll/All.h
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"
23 changes: 23 additions & 0 deletions liblll/CMakeLists.txt
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} )

Loading

0 comments on commit a8f1b1b

Please sign in to comment.