readme.md

This commit is contained in:
Ryzerth
2020-07-19 18:09:59 +02:00
parent cbf0b6290d
commit 09d874a385
10 changed files with 70 additions and 55 deletions

View File

@ -7,6 +7,7 @@
#include <main_window.h>
#include <styles.h>
#include <icons.h>
#include <version.h>
#ifdef _WIN32
@ -34,7 +35,7 @@ int main() {
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // Required on Mac
// Create window with graphics context
GLFWwindow* window = glfwCreateWindow(1280, 720, "SDR++ v0.1.0 (Built at " __TIME__ ", " __DATE__ ")", NULL, NULL);
GLFWwindow* window = glfwCreateWindow(1280, 720, "SDR++ v" VERSION_STR " (Built at " __TIME__ ", " __DATE__ ")", NULL, NULL);
if (window == NULL)
return 1;
glfwMakeContextCurrent(window);