From efc06b0b063fce03edac0e07994cb9e67fe15ee7 Mon Sep 17 00:00:00 2001 From: mengler-tomas <129318043+mengler-tomas@users.noreply.github.com> Date: Tue, 8 Aug 2023 05:22:22 +0200 Subject: [PATCH] Updated CMakeLists.txt Changed CMAKE_PROJECT_VERSION to PROJECT_VERSION --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b77c27..b2fd740 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ else() option(LUA_BUILD_COMPILER "Build luac compiler" ON) endif() -add_subdirectory(lua-${CMAKE_PROJECT_VERSION}) +add_subdirectory(lua-${PROJECT_VERSION}) if(LUA_ENABLE_TESTING) add_test(NAME lua-testsuite COMMAND lua -e "_U=true" all.lua WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/lua-${CMAKE_PROJECT_VERSION}-tests)