You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
376 B
16 lines
376 B
set(TARGET_NAME evmjit-cpp)
|
|
|
|
set(SOURCES
|
|
Env.cpp
|
|
JitVM.cpp JitVM.h
|
|
)
|
|
source_group("" FILES ${SOURCES})
|
|
|
|
add_library(${TARGET_NAME} ${SOURCES})
|
|
set_property(TARGET ${TARGET_NAME} PROPERTY FOLDER "libs")
|
|
|
|
include_directories(../..)
|
|
include_directories(${LLVM_INCLUDE_DIRS})
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(${TARGET_NAME} evmjit)
|
|
|