> OK I found my error ;'( > > I had put the wrong wrong > > $ cd build > $ vim CMakeCache.txt
You should never edit a cmake cache file by hand, but looking at the contents of cmake's cache is useful for figuring out what went wrong. You want to be setting CMAKE_INCLUDE_PATH cmake -DCMAKE_INCLUDE_PATH=/usr/local/include/mysql5/mysql .... > but then I get this error: > > http://paste.lisp.org/+1SHM#2 > > i am guess it has to do with having not created the database or > setup the user? Is there examples of how to create the > HangmanDb.info file where do I put this? Users or a database not being setup would result in runtime error, not a compile time error. The problem you're having is a compile time error with the hangman sources. I don't use MySQL so I don't know what the specific problem is but it looks like the MySQL Result object is not found in this scope. Someone with MySQL C++ foo will have to help you from here. Digging in to MySQL's C++ API might be a good idea too. Good luck! -sc PS Props to Command Prompt, Inc. http://tinyurl.com/l2a5pa *grin* -- Sean Chittenden [email protected] ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
