only use a single coremake dir in the tree (from corec/tools/coremake)
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
This commit is contained in:
parent
429911394f
commit
9ee55d7c1c
@ -1,4 +1,4 @@
|
|||||||
Include "*/*.proj"
|
#include "*/*.proj"
|
||||||
|
|
||||||
LIB matroska
|
LIB matroska
|
||||||
{
|
{
|
||||||
|
@ -2,10 +2,12 @@
|
|||||||
|
|
||||||
CON ebml-test00
|
CON ebml-test00
|
||||||
{
|
{
|
||||||
|
USE matroska
|
||||||
SOURCE test00.cpp
|
SOURCE test00.cpp
|
||||||
}
|
}
|
||||||
|
|
||||||
CON ebml-test0
|
CON ebml-test0
|
||||||
{
|
{
|
||||||
|
USE matroska
|
||||||
SOURCE test0.cpp
|
SOURCE test0.cpp
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
/*!
|
/*!
|
||||||
\file
|
\file
|
||||||
\version \$Id: test0.cpp 1078 2005-03-03 13:13:04Z robux4 $
|
\version \$Id$
|
||||||
\author Steve Lhomme <robux4 @ users.sf.net>
|
\author Steve Lhomme <robux4 @ users.sf.net>
|
||||||
Test the EBML write possibilities
|
Test the EBML write possibilities
|
||||||
\see http://www.cl.cam.ac.uk/~mgk25/unicode.html
|
\see http://www.cl.cam.ac.uk/~mgk25/unicode.html
|
||||||
@ -41,16 +41,16 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "StdIOCallback.hpp"
|
#include "ebml/StdIOCallback.h"
|
||||||
|
|
||||||
#include "EbmlUInteger.hpp"
|
#include "ebml/EbmlUInteger.h"
|
||||||
#include "EbmlSInteger.hpp"
|
#include "ebml/EbmlSInteger.h"
|
||||||
#include "EbmlBinary.hpp"
|
#include "ebml/EbmlBinary.h"
|
||||||
#include "EbmlString.hpp"
|
#include "ebml/EbmlString.h"
|
||||||
#include "EbmlUnicodeString.hpp"
|
#include "ebml/EbmlUnicodeString.h"
|
||||||
#include "EbmlMaster.hpp"
|
#include "ebml/EbmlMaster.h"
|
||||||
#include "EbmlFloat.hpp"
|
#include "ebml/EbmlFloat.h"
|
||||||
#include "EbmlStream.hpp"
|
#include "ebml/EbmlStream.h"
|
||||||
|
|
||||||
using namespace LIBMATROSKA_NAMESPACE;
|
using namespace LIBMATROSKA_NAMESPACE;
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
/*!
|
/*!
|
||||||
\file
|
\file
|
||||||
\version \$Id: test00.cpp 1078 2005-03-03 13:13:04Z robux4 $
|
\version \$Id$
|
||||||
\author Steve Lhomme <robux4 @ users.sf.net>
|
\author Steve Lhomme <robux4 @ users.sf.net>
|
||||||
Test the writing a basic EBML file
|
Test the writing a basic EBML file
|
||||||
*/
|
*/
|
||||||
@ -40,20 +40,20 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "StdIOCallback.h"
|
#include "ebml/StdIOCallback.h"
|
||||||
|
|
||||||
#include "EbmlHead.h"
|
#include "ebml/EbmlHead.h"
|
||||||
#include "EbmlSubHead.h"
|
#include "ebml/EbmlSubHead.h"
|
||||||
#include "EbmlStream.h"
|
#include "ebml/EbmlStream.h"
|
||||||
#include "EbmlVoid.h"
|
#include "ebml/EbmlVoid.h"
|
||||||
#include "EbmlContexts.h"
|
#include "ebml/EbmlContexts.h"
|
||||||
#include "KaxSegment.h"
|
#include "matroska/KaxSegment.h"
|
||||||
#include "KaxAttachments.h"
|
#include "matroska/KaxAttachments.h"
|
||||||
#include "KaxAttached.h"
|
#include "matroska/KaxAttached.h"
|
||||||
#include "KaxContexts.h"
|
#include "matroska/KaxContexts.h"
|
||||||
|
|
||||||
#include "EbmlVersion.h"
|
#include "ebml/EbmlVersion.h"
|
||||||
#include "KaxVersion.h"
|
#include "matroska/KaxVersion.h"
|
||||||
|
|
||||||
using namespace LIBMATROSKA_NAMESPACE;
|
using namespace LIBMATROSKA_NAMESPACE;
|
||||||
|
|
||||||
|
@ -2,10 +2,12 @@
|
|||||||
|
|
||||||
CON mux-test6
|
CON mux-test6
|
||||||
{
|
{
|
||||||
|
USE matroska
|
||||||
SOURCE test6.cpp
|
SOURCE test6.cpp
|
||||||
}
|
}
|
||||||
|
|
||||||
CON mux-test8
|
CON mux-test8
|
||||||
{
|
{
|
||||||
|
USE matroska
|
||||||
SOURCE test8.cpp
|
SOURCE test8.cpp
|
||||||
}
|
}
|
||||||
|
@ -1 +1,9 @@
|
|||||||
#include "*/*.proj"
|
#include "*/*.proj"
|
||||||
|
|
||||||
|
WORKSPACE tests
|
||||||
|
{
|
||||||
|
USE mux-test6
|
||||||
|
USE mux-test8
|
||||||
|
USE ebml-test00
|
||||||
|
USE ebml-test0
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user