fixed hrl paths

This commit is contained in:
Fernando 'Brujo' Benavides 2011-05-09 15:33:23 -03:00
parent 26e479fc84
commit 01d66b4959
10 changed files with 17 additions and 15 deletions

View file

@ -4,3 +4,5 @@
%% uncomment to get verbose output from test suite %% uncomment to get verbose output from test suite
%% {eunit_opts, [verbose]}. %% {eunit_opts, [verbose]}.
{erl_opts, [{i, "src"}, {src_dirs, ["src"]}]}.

View file

@ -33,7 +33,7 @@
-export([format/1, format/2]). -export([format/1, format/2]).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-ifdef(TEST). -ifdef(TEST).

View file

@ -28,7 +28,7 @@
-export([json_to_term/2, term_to_json/2]). -export([json_to_term/2, term_to_json/2]).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-ifdef(TEST). -ifdef(TEST).
-include_lib("eunit/include/eunit.hrl"). -include_lib("eunit/include/eunit.hrl").

View file

@ -28,8 +28,8 @@
-export([format/2]). -export([format/2]).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-include("./include/jsx_format.hrl"). -include("jsx_format.hrl").
-ifdef(TEST). -ifdef(TEST).

View file

@ -26,8 +26,8 @@
-define(utf16, true). -define(utf16, true).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-include("./include/jsx_decoder.hrl"). -include("jsx_decoder.hrl").
%% i've noticed you've noticed that there's no source here. very astute. see %% i've noticed you've noticed that there's no source here. very astute. see
%% jsx_decoder_template.hrl in the include directory. any mofications to this %% jsx_decoder_template.hrl in the include directory. any mofications to this

View file

@ -26,8 +26,8 @@
-define(utf16le, true). -define(utf16le, true).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-include("./include/jsx_decoder.hrl"). -include("jsx_decoder.hrl").
%% i've noticed you've noticed that there's no source here. very astute. see %% i've noticed you've noticed that there's no source here. very astute. see
%% jsx_decoder_template.hrl in the include directory. any mofications to this %% jsx_decoder_template.hrl in the include directory. any mofications to this

View file

@ -26,8 +26,8 @@
-define(utf32, true). -define(utf32, true).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-include("./include/jsx_decoder.hrl"). -include("jsx_decoder.hrl").
%% i've noticed you've noticed that there's no source here. very astute. see %% i've noticed you've noticed that there's no source here. very astute. see
%% jsx_decoder_template.hrl in the include directory. any mofications to this %% jsx_decoder_template.hrl in the include directory. any mofications to this

View file

@ -26,8 +26,8 @@
-define(utf32le, true). -define(utf32le, true).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-include("./include/jsx_decoder.hrl"). -include("jsx_decoder.hrl").
%% i've noticed you've noticed that there's no source here. very astute. see %% i've noticed you've noticed that there's no source here. very astute. see
%% jsx_decoder_template.hrl in the include directory. any mofications to this %% jsx_decoder_template.hrl in the include directory. any mofications to this

View file

@ -26,8 +26,8 @@
-define(utf8, true). -define(utf8, true).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-include("./include/jsx_decoder.hrl"). -include("jsx_decoder.hrl").
%% i've noticed you've noticed that there's no source here. very astute. see %% i've noticed you've noticed that there's no source here. very astute. see
%% jsx_decoder_template.hrl in the include directory. any mofications to this %% jsx_decoder_template.hrl in the include directory. any mofications to this

View file

@ -28,7 +28,7 @@
-export([is_json/2]). -export([is_json/2]).
-include("./include/jsx_common.hrl"). -include("jsx_common.hrl").
-ifdef(TEST). -ifdef(TEST).