mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 07:39:01 +08:00
83ff32536a
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
9 lines
409 B
Plaintext
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 |