Dawoodoz 053489737e Ported basic window functionality to MS-Windows 5 tahun lalu
..
NoWindow.cpp 3c4e7bc569 Beginning of public version history. 6 tahun lalu
README.md 3c4e7bc569 Beginning of public version history. 6 tahun lalu
Win32Window.cpp 053489737e Ported basic window functionality to MS-Windows 5 tahun lalu
X11Window.cpp 63bded1a0a Allowing the same application to run both windowed and in CLI. 5 tahun lalu

README.md

Native

The native window implementation for a certain system should begin with the name of the library being linked, and continue with a postfix "Window.cpp". For example: Linking to "X11" using "-lX11" will look for "X11Window.cpp" for the code that implements the following constructor. std::shared_ptrdsr::BackendWindow createBackendWindow(const dsr::String& title, int width, int height);

If your application won't create any window, compile and link with NoWindow.cpp to get rid of all dependencies.