mirror of
https://github.com/ptitSeb/box86.git
synced 2024-11-23 06:39:55 +00:00
94f451c4b7
This tool will automatically generate part of the wrapping library, certainly to avoid a lot of manual writing hoping to bring some help.
8 lines
256 B
CMake
8 lines
256 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project("helper")
|
|
find_package(Clang REQUIRED CONFIG)
|
|
|
|
add_executable(helper main.cpp gen.cpp)
|
|
#target_include_directories(helper SYSTEM PUBLIC ${CLANG_INCLUDE_DIRS})
|
|
target_link_libraries(helper PUBLIC clang-cpp LLVM)
|