]> granicus.if.org Git - libmatroska/commitdiff
only use a single coremake dir in the tree (from corec/tools/coremake)
authorSteve Lhomme <slhomme@matroska.org>
Sun, 4 Jul 2010 09:17:57 +0000 (09:17 +0000)
committerSteve Lhomme <slhomme@matroska.org>
Sun, 4 Jul 2010 09:17:57 +0000 (09:17 +0000)
add a coremake solution to build the libmatroska test files via coremake

git-svn-id: https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/libmatroska@383 a6f86f6d-0131-4f8e-9e7b-e335508773d5

libmatroska.proj
test/ebml/ebml.proj
test/ebml/test0.cpp
test/ebml/test00.cpp
test/mux/mux.proj
test/test.proj

index 559a95e344545a5a3771f9f9d775aa6b8e2c9c4c..22ea8d7f43f554049925873933af9f754d6327f9 100644 (file)
@@ -1,4 +1,4 @@
-Include "*/*.proj"
+#include "*/*.proj"
 
 LIB matroska
 {
index 94fe5bcc3a0365320a9f6c840293e88740c41b81..99026d73b3089916161df28668c7b6760d122e4f 100644 (file)
@@ -2,10 +2,12 @@
 
 CON ebml-test00
 {
+  USE matroska
   SOURCE test00.cpp
 }
 
 CON ebml-test0
 {
+  USE matroska
   SOURCE test0.cpp
 }
index bfdcf9ead8dbf26e6b2a62eb8b8a50979f2f2a4d..ea47ef73392583dd52bb0d75612c28dd53728d54 100644 (file)
@@ -32,7 +32,7 @@
 
 /*!
     \file
-    \version \$Id: test0.cpp 1078 2005-03-03 13:13:04Z robux4 $
+    \version \$Id$
     \author Steve Lhomme     <robux4 @ users.sf.net>
                Test the EBML write possibilities
                \see http://www.cl.cam.ac.uk/~mgk25/unicode.html
 
 #include <stdio.h>
 
-#include "StdIOCallback.hpp"
+#include "ebml/StdIOCallback.h"
 
-#include "EbmlUInteger.hpp"
-#include "EbmlSInteger.hpp"
-#include "EbmlBinary.hpp"
-#include "EbmlString.hpp"
-#include "EbmlUnicodeString.hpp"
-#include "EbmlMaster.hpp"
-#include "EbmlFloat.hpp"
-#include "EbmlStream.hpp"
+#include "ebml/EbmlUInteger.h"
+#include "ebml/EbmlSInteger.h"
+#include "ebml/EbmlBinary.h"
+#include "ebml/EbmlString.h"
+#include "ebml/EbmlUnicodeString.h"
+#include "ebml/EbmlMaster.h"
+#include "ebml/EbmlFloat.h"
+#include "ebml/EbmlStream.h"
 
 using namespace LIBMATROSKA_NAMESPACE;
 
index c82dfbd19bc5412b13631d452a8960d6125a4236..aaf2c57b0ef0426aa6a311006007563f2d14a967 100644 (file)
@@ -32,7 +32,7 @@
 
 /*!
     \file
-    \version \$Id: test00.cpp 1078 2005-03-03 13:13:04Z robux4 $
+    \version \$Id$
     \author Steve Lhomme     <robux4 @ users.sf.net>
                Test the writing a basic EBML file
 */
 #include <stdio.h>
 #include <string>
 
-#include "StdIOCallback.h"
+#include "ebml/StdIOCallback.h"
 
-#include "EbmlHead.h"
-#include "EbmlSubHead.h"
-#include "EbmlStream.h"
-#include "EbmlVoid.h"
-#include "EbmlContexts.h"
-#include "KaxSegment.h"
-#include "KaxAttachments.h"
-#include "KaxAttached.h"
-#include "KaxContexts.h"
+#include "ebml/EbmlHead.h"
+#include "ebml/EbmlSubHead.h"
+#include "ebml/EbmlStream.h"
+#include "ebml/EbmlVoid.h"
+#include "ebml/EbmlContexts.h"
+#include "matroska/KaxSegment.h"
+#include "matroska/KaxAttachments.h"
+#include "matroska/KaxAttached.h"
+#include "matroska/KaxContexts.h"
 
-#include "EbmlVersion.h"
-#include "KaxVersion.h"
+#include "ebml/EbmlVersion.h"
+#include "matroska/KaxVersion.h"
 
 using namespace LIBMATROSKA_NAMESPACE;
 
index e46753cd9940d59005c978b263be400bd9e69453..a9270aab9bae9cfbe15e9664cb25ab771b60ebad 100644 (file)
@@ -2,10 +2,12 @@
 
 CON mux-test6
 {
+  USE matroska
   SOURCE test6.cpp
 }
 
 CON mux-test8
 {
+  USE matroska
   SOURCE test8.cpp
 }
index 8af3a9adb46cb4025dd8b5f001c877469489f040..f7744a2e94d26a29363e0c7792d8068e7c5609d1 100644 (file)
@@ -1 +1,9 @@
 #include "*/*.proj"
+
+WORKSPACE tests
+{
+  USE mux-test6
+  USE mux-test8
+  USE ebml-test00
+  USE ebml-test0
+}