aboutsummaryrefslogtreecommitdiff
path: root/ports/lua/usage
diff options
context:
space:
mode:
authorLily <47812810+LilyWangL@users.noreply.github.com>2020-10-28 11:29:12 +0800
committerGitHub <noreply@github.com>2020-10-27 20:29:12 -0700
commit83ff32536aafdf99a8624d158384f27929c1888f (patch)
treedd8f926c5caede067c9c0425bc9cda3d988fdac6 /ports/lua/usage
parent10771a845e5cd7ee07a8fe367188f19bb722864b (diff)
downloadvcpkg-83ff32536aafdf99a8624d158384f27929c1888f.tar.gz
vcpkg-83ff32536aafdf99a8624d158384f27929c1888f.zip
[lua] Fix find_package warning (#13195)
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'ports/lua/usage')
-rw-r--r--ports/lua/usage2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/lua/usage b/ports/lua/usage
index 8a11e20b9..e27f6392d 100644
--- a/ports/lua/usage
+++ b/ports/lua/usage
@@ -1,7 +1,7 @@
Use this package via the module FindLua that comes with CMake. To use in your CMakeLists.txt:
include(FindLua)
- find_package(lua REQUIRED)
+ find_package(Lua REQUIRED)
target_link_libraries(main PRIVATE ${LUA_LIBRARIES})
target_include_directories(main PRIVATE ${LUA_INCLUDE_DIR})