From 316cbb3f93b64ca92ded04e671a097c88c551884 Mon Sep 17 00:00:00 2001 From: ygrek Date: Sat, 31 Jan 2015 12:51:59 +0800 Subject: [PATCH] pack --- _oasis | 7 ++++--- run_test | 2 +- src/{sqlgg.ml => cli.ml} | 0 3 files changed, 5 insertions(+), 4 deletions(-) rename src/{sqlgg.ml => cli.ml} (100%) diff --git a/_oasis b/_oasis index 42c6d6f..674a8cf 100644 --- a/_oasis +++ b/_oasis @@ -15,13 +15,14 @@ Executable sqlgg Path: src/ Install: true CompiledObject: best - MainIs: sqlgg.ml + MainIs: cli.ml BuildDepends: extlib, deriving, oUnit, sqlgg Library sqlgg + Pack: true Path: lib/ - Modules: - InternalModules: + Modules: RA, Props, Sql, Stmt, Tables, Syntax + InternalModules: Prelude BuildDepends: extlib, deriving Test main diff --git a/run_test b/run_test index cf05548..37c103f 100755 --- a/run_test +++ b/run_test @@ -7,7 +7,7 @@ echo Running regression tests mkdir -p test/out test/tmp for file in test/*.sql; do basename=${file#test/} - ./sqlgg.native -no-header -gen xml $file > test/tmp/${basename%.sql}.xml + ./cli.native -no-header -gen xml $file > test/tmp/${basename%.sql}.xml done diff -u test/out test/tmp diff --git a/src/sqlgg.ml b/src/cli.ml similarity index 100% rename from src/sqlgg.ml rename to src/cli.ml -- 2.11.4.GIT