From 8c9fac4c694149001ab36c54f3c07e9fd7eeb528 Mon Sep 17 00:00:00 2001 From: catskul Date: Wed, 15 Nov 2017 02:49:33 -0500 Subject: [PATCH] #671 switch ordering of args in find_package for Protobuf (#672) per #671 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ed62e72..deda64e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ find_package(Boost REQUIRED COMPONENTS iostreams) find_package(Ceres REQUIRED COMPONENTS SparseLinearAlgebraLibrary) find_package(Eigen3 REQUIRED) find_package(LuaGoogle REQUIRED) -find_package(Protobuf REQUIRED 3.0.0) +find_package(Protobuf 3.0.0 REQUIRED) include(FindPkgConfig) PKG_SEARCH_MODULE(CAIRO REQUIRED cairo>=1.12.16)