c++ - Build SuperTuxKart on Mac OS X(failed to create symbolic link 'lib/libpng.pc': No such file or directory) -


i'm trying build open source game called supertuxkart on mac os x 10.10, following official instruction here.

however, when typed "cmake .. -duse_cpp2011=1" or "cmake .. -gxcode", got error message:
failed create symbolic link 'lib/libpng.pc': no such file or directory failed create symbolic link 'lib/libpng-config': no such file or directory .

it seems package has "lib/libpng/libpng.p" , "lib/libpng/libpng.pc" in "cmake_build" directory not 'lib/libpng.pc' , 'lib/libpng-config'.

is reason? problem caused bugs in cmake script provided package or cause didn't install libpng properly? how fix it?

cmake_library_path used when searching libraries e.g. using find_library() command. if have libraries in non-standard locations, may useful set variable directory (e.g. /sw/lib on mac os x). if need several directories, separate them platform specific separators (e.g. ":" on unix)

cmake -dcmake_library_path="your path" ...


Comments

Popular posts from this blog

php - Invalid Cofiguration - yii\base\InvalidConfigException - Yii2 -

How to show in django cms breadcrumbs full path? -

ruby on rails - npm error: tunneling socket could not be established, cause=connect ETIMEDOUT -