X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=CMakeLists.txt;h=4188564609960b7d9a02ec31f923a9985324b6e7;hb=bd921a7916f0fafc493b1c4d0eeb5e2bb1d6a7c2;hp=b804cf5b69517b869c2e8256766fc0e7ad330cc8;hpb=86b1542181a92841d174e1caec94d084a34e5158;p=minetest.git diff --git a/CMakeLists.txt b/CMakeLists.txt index b804cf5b6..418856460 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,7 +49,6 @@ if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type: Debug or Release" FORCE) endif() - # Included stuff set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/") @@ -187,11 +186,14 @@ if(APPLE) install(FILES "misc/Info.plist" DESTINATION "${BUNDLE_PATH}/Contents") endif() +# Library pack +find_package(GMP REQUIRED) +find_package(Json REQUIRED) +find_package(Lua REQUIRED) # Subdirectories # Be sure to add all relevant definitions above this -add_subdirectory(lib) add_subdirectory(src)