sled/3party/minilua/CMakeLists.txt
tqcq 3c43c4ff58
All checks were successful
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Successful in 1m53s
linux-x64-gcc / linux-gcc (Debug) (push) Successful in 1m46s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Successful in 2m13s
linux-x64-gcc / linux-gcc (Release) (push) Successful in 1m49s
feat add lua
2024-03-31 19:44:27 +08:00

8 lines
180 B
CMake

cmake_minimum_required(VERSION 3.10)
project(
minilua
VERSION 5.4.6
LANGUAGES C CXX)
add_library(minilua STATIC src/minilua.c)
target_include_directories(minilua PUBLIC src)