Click here to Skip to main content
15,884,943 members
Articles / Web Development / HTML

QxOrm - C++ ORM (Object Relational Mapping) Library

Rate me:
Please Sign up or sign in to vote.
4.90/5 (61 votes)
24 Apr 2019GPL326 min read 140.6K   321   140  
QxOrm C++ library: Persistence (based on QtSql Qt library) - Serialization (based on boost::serialization library) - Reflection (introspection)
REM -- BUILD QXORM LIBRARY --
cd "../"
qmake
mingw32-make debug
IF NOT EXIST "./debug/QxOrmd.dll" GOTO END
cd "./debug/"
copy "libQxOrmd.a" "../lib/"
copy "QxOrmd.dll" "../lib/"
copy "libQxOrmd.a" "../test/_bin/"
copy "QxOrmd.dll" "../test/_bin/"
cd "../"
REM -- BUILD TEST DLL1 --
cd "./test/qxDllSample/dll1/"
qmake
mingw32-make debug
IF NOT EXIST "../../_bin/dll1d.dll" GOTO END
REM -- BUILD TEST DLL2 --
cd "../dll2/"
qmake
mingw32-make debug
IF NOT EXIST "../../_bin/dll2d.dll" GOTO END
REM -- BUILD TEST EXE --
cd "../exe/"
qmake
mingw32-make debug
IF NOT EXIST "../../_bin/exed.exe" GOTO END
REM -- BUILD TEST QXBLOG --
cd "../../qxBlog/"
qmake
mingw32-make debug
IF NOT EXIST "../_bin/qxBlogd.exe" GOTO END
REM -- BUILD TEST QXBLOG COMPOSITE KEY --
cd "../qxBlogCompositeKey/"
qmake
mingw32-make debug
IF NOT EXIST "../_bin/qxBlogCompositeKeyd.exe" GOTO END
REM -- BUILD TEST QXCLIENTSERVER QXSERVICE --
cd "../qxClientServer/qxService"
qmake qxServiceServer.pro
mingw32-make debug
IF NOT EXIST "../../_bin/qxServiceServerd.dll" GOTO END
qmake qxServiceClient.pro
mingw32-make debug
IF NOT EXIST "../../_bin/qxServiceClientd.dll" GOTO END
REM -- BUILD TEST QXCLIENTSERVER QXSERVER --
cd "../qxServer/"
qmake
mingw32-make debug
IF NOT EXIST "../../_bin/qxServerd.exe" GOTO END
REM -- BUILD TEST QXCLIENTSERVER QXCLIENT --
cd "../qxClient/"
qmake
mingw32-make debug
IF NOT EXIST "../../_bin/qxClientd.exe" GOTO END
:END
pause

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions