Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

27 rindas
982B

  1. Getting Started
  2. ###############
  3. Using ``dds`` is extremely simple:
  4. #. Create a new directory. This will be our *package root*.
  5. #. Create a subdirectory named ``src/``.
  6. #. Create a file named ``application.main.cpp``.
  7. #. Add a ``main()`` function to our new source file.
  8. #. Depending on your compiler:
  9. #. If you are using GCC, run the ``dds build -t :gcc`` command from the
  10. package root.
  11. #. If you are using Clang, run the ``dds build -t :clang`` command from the
  12. package root.
  13. #. If you are using Visual C++, run the :code:`dds build -t :msvc` command
  14. from the package root from a developer command prompt.
  15. You will now have a ``_build`` directory, and it will contain a newly compiled
  16. ``application``!
  17. Obviously this isn't *all* there is to do with ``dds``. Read on to the next
  18. pages to learn more.
  19. .. note::
  20. You're reading a very early version of these docs. There will be a lot more
  21. here in the future. Watch this space for changes!