add comment, remove debug output

This commit is contained in:
Wolfgang Thaller 2015-01-20 00:08:32 +01:00
parent 41e327debc
commit f363d6d0a7
2 changed files with 5 additions and 1 deletions

View File

@ -165,7 +165,7 @@ bool ResourceFile::assign(std::string pathstring, ResourceFile::Format f)
format = Format::basilisk;
#endif
}
std::cout << "assigned: " << pathstring << " format " << (int)format << "\n";
// std::cout << "assigned: " << pathstring << " format " << (int)format << "\n";
return true;
}

View File

@ -21,6 +21,10 @@ set(CMAKE_CXX_FLAGS "--std=c++11 -Wall")
find_package(Boost COMPONENTS wave filesystem system thread regex program_options)
# Look for bison.
# We need Version 3, and Mac OS X still comes with an outdated version (2.3).
# So we just add the path where the homebrew package manager installs its
# "keg-only" version. Shouldn't hurt on Linux.
set(CMAKE_PROGRAM_PATH $CMAKE_PROGRAM_PATH "/usr/local/opt/bison/bin")
find_package(BISON 3.0.2)