mirror of
https://onedev.site.tesses.net/crosslang/better-crosslang
synced 2026-02-08 10:15:45 +00:00
14 lines
266 B
CMake
14 lines
266 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
|
|
project(BetterCrossLangCompiler)
|
|
|
|
find_package(TessesCrossLang REQUIRED)
|
|
|
|
add_executable(bcrossc
|
|
src/bcrossc.cpp
|
|
src/node.cpp
|
|
src/parser.cpp
|
|
)
|
|
|
|
target_link_libraries(bcrossc PUBLIC TessesCrossLang::crosslang_shared) |