For$
<!-- begin site header -->
<div id=

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Kabekiz

Pages: [1]
1
Development / Re: Problems building mineserver 2
« on: November 04, 2011, 06:20:10 am »
If you are like me your boost library is in an odd spot.

Look for this line...

Code: [Select]
FIND_PACKAGE(Boost COMPONENTS system filesystem signals thread REQUIRED)


and above it put this...

Code: [Select]
SET(CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} "/usr/src/boost_1_47_0/")
SET(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH} "/usr/src/boost_1_47_0/stage/lib/")

FIND_PACKAGE(Boost COMPONENTS system filesystem signals thread REQUIRED)

Obviously substituting the location of the boost directories in there in the set commands.

Pages: [1]