mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-22 08:34:35 +00:00
add comment, remove debug output
This commit is contained in:
parent
41e327debc
commit
f363d6d0a7
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user