Skip to content

DS-Creator-Dev/DSCEngine

Repository files navigation

DSCEngine

How to build

  1. Select the build mode.

    • For the normal distribution of DSC (compiles into libdscengine.a):

      set_build normal

    • For the DSC build that activates test modules (compiles into libdscengine_testmod.a, dev only):

      set_build testmod

  2. Make it

    make clean & make -f Makefile

Using DSCEngine to compile other dependent projects

  1. Add %DSCENGINE% to your environment variables. Use this automatic script that loads %DSCENGINE% to the user variables.

    setenv

  2. Go to the project's path and type make.

    Warning! Make sure you use the correct library build to compile your project. Testmodules need a DSCEngine version that was compiled with the TESTMOD flag.

Related