Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
helenol committed Feb 27, 2017
1 parent 4018730 commit 751c7c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ set(VERSION 0.3.4)
ExternalProject_Add(glog_src
URL https://github.com/google/glog/archive/v${VERSION}.zip
UPDATE_COMMAND ""
CONFIGURE_COMMAND cd ../glog_src/glog-${VERSION} && ./configure --with-pic
CONFIGURE_COMMAND cd ../glog_src/ && ./configure --with-pic
--with-gflags=${gflags_catkin_PREFIX}
--prefix=${CATKIN_DEVEL_PREFIX}
BUILD_COMMAND cd ../glog_src/glog-${VERSION} && make -j 8
INSTALL_COMMAND cd ../glog_src/glog-${VERSION} && make install -j 8
BUILD_COMMAND cd ../glog_src/ && make -j 8
INSTALL_COMMAND cd ../glog_src/ && make install -j 8
)

cs_add_library(${PROJECT_NAME} src/dependency_tracker.cc)
Expand Down

0 comments on commit 751c7c0

Please sign in to comment.