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.

17 lines
376 B

set(TARGET_NAME evmjit-cpp)
10 years ago
set(SOURCES
Env.cpp
JitVM.cpp JitVM.h
)
source_group("" FILES ${SOURCES})
10 years ago
add_library(${TARGET_NAME} ${SOURCES})
set_property(TARGET ${TARGET_NAME} PROPERTY FOLDER "libs")
10 years ago
include_directories(../..)
include_directories(${LLVM_INCLUDE_DIRS})
include_directories(${Boost_INCLUDE_DIRS})
target_link_libraries(${TARGET_NAME} evmjit)