mirror of
https://github.com/ptitSeb/box64.git
synced 2024-11-23 22:49:43 +00:00
8 lines
255 B
CMake
8 lines
255 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)
|