use current dir as default dbg path, not ./geo
This commit is contained in:
parent
89be7a1760
commit
549cc90616
3 changed files with 5 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
||||||
set(PFAEDLE_INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR} ${CMAKE_CURRENT_BINARY_DIR})
|
set(PFAEDLE_INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR} ${CMAKE_CURRENT_BINARY_DIR})
|
||||||
|
|
||||||
cpplint_add_subdirectory(pfaedle)
|
if (COMMAND cpplint_add_subdirectory)
|
||||||
|
cpplint_add_subdirectory(pfaedle)
|
||||||
|
endif()
|
||||||
|
|
||||||
include_directories(
|
include_directories(
|
||||||
${PFAEDLE_INCLUDE_DIR}
|
${PFAEDLE_INCLUDE_DIR}
|
||||||
|
|
|
@ -73,7 +73,7 @@ void ConfigReader::help(const char* bin) {
|
||||||
<< std::setw(35) << " --inplace"
|
<< std::setw(35) << " --inplace"
|
||||||
<< "overwrite input GTFS feed with output feed\n"
|
<< "overwrite input GTFS feed with output feed\n"
|
||||||
<< "\nDebug Output:\n"
|
<< "\nDebug Output:\n"
|
||||||
<< std::setw(35) << " -d [ --dbg-path ] arg (=geo)"
|
<< std::setw(35) << " -d [ --dbg-path ] arg (=.)"
|
||||||
<< "output path for debug files\n"
|
<< "output path for debug files\n"
|
||||||
<< std::setw(35) << " --write-trgraph"
|
<< std::setw(35) << " --write-trgraph"
|
||||||
<< "write transit graph as GeoJSON to\n"
|
<< "write transit graph as GeoJSON to\n"
|
||||||
|
|
|
@ -18,7 +18,7 @@ using ad::cppgtfs::gtfs::Route;
|
||||||
|
|
||||||
struct Config {
|
struct Config {
|
||||||
Config()
|
Config()
|
||||||
: dbgOutputPath("geo"),
|
: dbgOutputPath("."),
|
||||||
solveMethod("global"),
|
solveMethod("global"),
|
||||||
evalPath("."),
|
evalPath("."),
|
||||||
outputPath("gtfs-out"),
|
outputPath("gtfs-out"),
|
||||||
|
|
Loading…
Reference in a new issue