What's new

TrinityCore 6.2.4

levcsu

Verified Member
23
2017
6
I need a little help. Since I know, its not longer supported to do 6.2.4 from TC, but I need an extractors.
Whe I try to cmake it, I've got this issue:

CMake Warning (dev) at dep/boost/CMakeLists.txt:29 (find_package):
Policy CMP0074 is not set: find_package uses <PackageName>_ROOT variables.
Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.

Environment variable Boost_ROOT is set to:

C:/local/boost_1_69_0

For compatibility, CMake is ignoring the variable.
This warning is for project developers. Use -Wno-dev to suppress it.

CMake Error at cmake/macros/FindBoost.cmake:1185 (message):
Unable to find the requested Boost libraries.

Boost version: 1.69.0

Boost include path: C:/local/boost_1_69_0

Could not find the following static Boost libraries:

boost_system
boost_filesystem
boost_thread
boost_program_options
boost_iostreams
boost_regex

No Boost libraries were found. You may need to set BOOST_LIBRARYDIR to the
directory containing Boost libraries or BOOST_ROOT to the location of
Boost.
Call Stack (most recent call first):
dep/boost/CMakeLists.txt:29 (find_package)

Source: https://github.com/TrinityCore/TrinityCore/tree/6.2.4/21742

I have 1_69_00 boost, and its BOOST_ROOT.
I followed the instruction by TrinityCore Wiki, so every suggested programs are the latest table verions.

OS: Windows
 

murdocmurat

Gold Supporter
Veteran Member
122
2017
22
I need a little help. Since I know, its not longer supported to do 6.2.4 from TC, but I need an extractors.
Whe I try to cmake it, I've got this issue:

CMake Warning (dev) at dep/boost/CMakeLists.txt:29 (find_package):
Policy CMP0074 is not set: find_package uses <PackageName>_ROOT variables.
Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.

Environment variable Boost_ROOT is set to:

C:/local/boost_1_69_0

For compatibility, CMake is ignoring the variable.
This warning is for project developers. Use -Wno-dev to suppress it.

CMake Error at cmake/macros/FindBoost.cmake:1185 (message):
Unable to find the requested Boost libraries.

Boost version: 1.69.0

Boost include path: C:/local/boost_1_69_0

Could not find the following static Boost libraries:

boost_system
boost_filesystem
boost_thread
boost_program_options
boost_iostreams
boost_regex

No Boost libraries were found. You may need to set BOOST_LIBRARYDIR to the
directory containing Boost libraries or BOOST_ROOT to the location of
Boost.
Call Stack (most recent call first):
dep/boost/CMakeLists.txt:29 (find_package)

Source: https://github.com/TrinityCore/TrinityCore/tree/6.2.4/21742

I have 1_69_00 boost, and its BOOST_ROOT.
I followed the instruction by TrinityCore Wiki, so every suggested programs are the latest table verions.

OS: Windows

check in cmake witch boost version u need since its old source maybe 1.55 will works
 

levcsu

Verified Member
23
2017
6
I tried with: 1_55_0, 1_59_00, 1_60_0, 1_61_0, 1_66_0, and 1_69_0

In the FindBoost.cmake file, theres several versions, but still not working

"1.61.0" "1.61"
"1.60.0" "1.60" "1.59.0" "1.59" "1.58.0" "1.58" "1.57.0" "1.57" "1.56.0" "1.56"
"1.55.0" "1.55" "1.54.0" "1.54" "1.53.0" "1.53" "1.52.0" "1.52" "1.51.0" "1.51"
"1.50.0" "1.50" "1.49.0" "1.49" "1.48.0" "1.48" "1.47.0" "1.47" "1.46.1"
"1.46.0" "1.46" "1.45.0" "1.45" "1.44.0" "1.44" "1.43.0" "1.43" "1.42.0" "1.42"
"1.41.0" "1.41" "1.40.0" "1.40" "1.39.0" "1.39" "1.38.0" "1.38" "1.37.0" "1.37"
"1.36.1" "1.36.0" "1.36" "1.35.1" "1.35.0" "1.35" "1.34.1" "1.34.0"
"1.34" "1.33.1" "1.33.0" "1.33"

Still, the error is the same:
CMake Warning (dev) at dep/boost/CMakeLists.txt:29 (find_package):
Policy CMP0074 is not set: find_package uses <PackageName>_ROOT variables.
Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.

Environment variable Boost_ROOT is set to:

C:/local/boost_1_66_0

For compatibility, CMake is ignoring the variable.
This warning is for project developers. Use -Wno-dev to suppress it.

CMake Error at cmake/macros/FindBoost.cmake:1185 (message):
Unable to find the requested Boost libraries.

Boost version: 1.66.0

Boost include path: C:/local/boost_1_66_0

Could not find the following static Boost libraries:

boost_system
boost_filesystem
boost_thread
boost_program_options
boost_iostreams
boost_regex

No Boost libraries were found. You may need to set BOOST_LIBRARYDIR to the
directory containing Boost libraries or BOOST_ROOT to the location of
Boost.
Call Stack (most recent call first):
dep/boost/CMakeLists.txt:29 (find_package)
 

Ayiko

Senior User
344
2014
13
"No Boost libraries were found. You may need to set BOOST_LIBRARYDIR to the
directory containing Boost libraries or BOOST_ROOT to the location of
Boost."

You might need to set the correct path to the libraries, a simple google will help you.
 
Top