https://github.com/craftablescience/lua-cmake
Download lua at cmake build time and add it as a library
https://github.com/craftablescience/lua-cmake
Last synced: 6 months ago
JSON representation
Download lua at cmake build time and add it as a library
- Host: GitHub
- URL: https://github.com/craftablescience/lua-cmake
- Owner: craftablescience
- License: mit
- Created: 2023-05-26T07:45:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-26T08:14:09.000Z (over 2 years ago)
- Last Synced: 2025-05-31T09:47:50.765Z (8 months ago)
- Language: CMake
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lua-cmake
Download lua at cmake build time and add it as a library. Loosely based on https://github.com/lubgr/lua-cmake.
## Usage
Add the following to your cmake file:
```cmake
add_subdirectory(path/to/lua-cmake)
target_link_libraries(your-target lua::lua)
```