diff options
author | 2017-02-07 20:07:56 +0100 | |
---|---|---|
committer | 2017-02-10 21:52:09 +0100 | |
commit | ab17457707eaab1ec5d3f4719704ccd25a235651 (patch) | |
tree | 42e034a901f16f281a65049a64eb72f76e3ba55f /src/lib/netlist/prg/nltool.cpp | |
parent | 041f7bb54952193083f5bbf507c1585fcaf21504 (diff) |
Make sure netlist includes are not found directly on include path.
Instead, they have to be prefixed by "netlist/". Removed unneeded link
librariers for nltool and nlwav along the way. (nw)
Diffstat (limited to 'src/lib/netlist/prg/nltool.cpp')
-rw-r--r-- | src/lib/netlist/prg/nltool.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/netlist/prg/nltool.cpp b/src/lib/netlist/prg/nltool.cpp index 353afa8556c..4e9875dd06d 100644 --- a/src/lib/netlist/prg/nltool.cpp +++ b/src/lib/netlist/prg/nltool.cpp @@ -8,12 +8,12 @@ ****************************************************************************/ -#include "plib/poptions.h" -#include "nl_setup.h" -#include "nl_parser.h" -#include "devices/net_lib.h" -#include "tools/nl_convert.h" -#include "solver/nld_solver.h" +#include "netlist/plib/poptions.h" +#include "netlist/nl_setup.h" +#include "netlist/nl_parser.h" +#include "netlist/devices/net_lib.h" +#include "netlist/tools/nl_convert.h" +#include "netlist/solver/nld_solver.h" class tool_options_t : public plib::options { |