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.
25 lines
560 B
25 lines
560 B
set(TARGET_NAME evmjit-cpp)
|
|
|
|
# Boost
|
|
find_package(Boost REQUIRED)
|
|
|
|
set(SOURCES
|
|
Env.cpp
|
|
JitVM.cpp JitVM.h
|
|
Utils.h
|
|
)
|
|
source_group("" FILES ${SOURCES})
|
|
|
|
if(${CMAKE_CXX_COMPILER_ID} STREQUAL "MSVC")
|
|
else()
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC") # add PIC for archive
|
|
endif()
|
|
|
|
add_library(${TARGET_NAME} STATIC ${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)
|
|
|