mirror of
https://github.com/cuberite/sqlite.git
synced 2025-08-04 02:16:07 -04:00
6 lines
146 B
CMake
6 lines
146 B
CMake
cmake_minimum_required (VERSION 3.13)
|
|
project (lsqlite C)
|
|
|
|
add_library(lsqlite lsqlite3.cpp)
|
|
target_link_libraries(lsqlite PUBLIC sqlite3 lualib)
|