diff options
author | Nobuaki Sukegawa <nsuke@apache.org> | 2016-02-27 03:29:34 +0900 |
---|---|---|
committer | Nobuaki Sukegawa <nsuke@apache.org> | 2016-02-27 16:55:55 +0900 |
commit | f2952847e65c998b6f543f1cc63a4e173e10b66a (patch) | |
tree | e5c0ac94356cd5a53823bc789ab5b334556970c7 /tutorial/dart | |
parent | fa53a3ce94eeed38367d238b3f7818105f3d7ce9 (diff) | |
download | thrift-f2952847e65c998b6f543f1cc63a4e173e10b66a.tar.gz |
THRIFT-3681 Fix Dart tutorial build
Client: Build (Dart)
Patch: Nobuaki Sukegawa
This closes #901
Diffstat (limited to 'tutorial/dart')
-rw-r--r-- | tutorial/dart/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tutorial/dart/Makefile.am b/tutorial/dart/Makefile.am index 2bb6bf2c7..306864c03 100644 --- a/tutorial/dart/Makefile.am +++ b/tutorial/dart/Makefile.am @@ -17,6 +17,8 @@ # under the License. # +BUILT_SOURCES = gen-dart/tutorial/lib/tutorial.dart gen-dart/shared/lib/shared.dart + THRIFT = $(top_builddir)/compiler/cpp/thrift gen-dart/tutorial/lib/tutorial.dart gen-dart/shared/lib/shared.dart: $(top_srcdir)/tutorial/tutorial.thrift @@ -44,7 +46,7 @@ pub-get-console-client: cd console_client; ${DARTPUB} get pub-get-server: - cd client; ${DARTPUB} get + cd server; ${DARTPUB} get tutorialserver: pub-get-gen pub-get-server ${DART} server/bin/main.dart @@ -53,4 +55,4 @@ tutorialclient: pub-get-gen pub-get-client cd client; ${DARTPUB} serve tutorialconsoleclient: pub-get-console-client - ${DART} console-client/bin/main.dart + ${DART} console_client/bin/main.dart |