From: SourceForge.net <no...@so...> - 2008-04-06 18:02:01
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4887706 By: wpvanpaassen Hi, thanks for trying out TuxCap. Could you please post the output of make VERBOSE=1 I would also like to see the output of the first run of cmake ../tuxcap. (throw away your CMakeCache.txt file and rerun cmake ../tuxcap) You seem to be correct about the missing SDL include, it looks like cmake fails to substitute {SDL_INCLUDE_DIR}. You can try to hardcode the SDL include dir in the file tuxcap/CMakeList.txt on the following lines for release/debug and c/c++ SET(CMAKE_CXX_FLAGS_RELEASE "-I/Library/Frameworks/SDL.framework/Headers -DNDEBUG -O3 -m32") SET(CMAKE_C_FLAGS_RELEASE "-I/Library/Frameworks/SDL.framework/Headers -DNDEBUG -O3 -m32") .. .. and run cmake ../tuxcap again from the tuxcap-build dir Good luck Cheers WP ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=709544 |