vcpkg/ports/lua/usage
paul-reilly aaddcb1afb
Add post-build usage info for Lua port. (#9934)
* Add post-build usage info for Lua port.

* Fix CMake command that moves info file

* Update Lua package version number
2020-02-06 11:07:19 -08:00

9 lines
409 B
Plaintext

Use this package via the module FindLua that comes with CMake. To use in your CMakeLists.txt:
include(FindLua)
find_package(lua REQUIRED)
target_link_libraries(main PRIVATE ${LUA_LIBRARIES})
target_include_directories(main PRIVATE ${LUA_INCLUDE_DIR})
For more information about the variables set by this module, please see:
https://cmake.org/cmake/help/latest/module/FindLua.html