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.
19 lines
414 B
19 lines
414 B
set(TARGET_NAME evmjit-cpp)
|
|
|
|
# Boost
|
|
find_package(Boost REQUIRED)
|
|
|
|
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)
|
|
|