Merge pull request #2 from bubba2k/linux-build

Building for Linux
This commit is contained in:
Lauchmelder 2021-10-29 01:26:09 +02:00 committed by GitHub
commit 7977964abf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 20 additions and 5 deletions

View file

@ -10,6 +10,9 @@ add_compile_definitions(_CRT_SECURE_NO_WARNINGS)
add_subdirectory("vendor/SDL")
# some IDEs / text editors require compile_commands.json
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Add source to this project's executable.
add_subdirectory("src")

View file

@ -9,7 +9,7 @@ target_sources(yabgbe PUBLIC ${OTHER_SOURCES})
target_include_directories(yabgbe
PUBLIC
"${CMAKE_SOURCE_DIR}/vendor/imgui/include"
"${CMAKE_SOURCE_DIR}/vendor/glad/include"
"${CMAKE_SOURCE_DIR}/vendor/glad/include/glad/"
SDL2
)

View file

@ -3,7 +3,9 @@
#include <iostream>
#include <SDL.h>
#include <imgui.h>
#include <glad.h>
#define IMGUI_IMPL_OPENGL_LOADER_GLAD
#include <imgui_impl_opengl3.h>
#include <imgui_sdl.h>
static BYTE colormap[4] = { 0b00000000, 0b00100101, 0b01001010, 0b10010011 };
@ -25,6 +27,7 @@ int main(int argc, char** argv)
}
SDL_Window* window = SDL_CreateWindow("Gameboy Emulator", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, width, height, SDL_WINDOW_SHOWN);
if(window == nullptr)
{
std::cerr << "Failed to create window:\n" << SDL_GetError() << std::endl;
return -1;
@ -37,6 +40,11 @@ int main(int argc, char** argv)
return -1;
}
if(!gladLoadGL())
{
std::cerr << "Failed to load GL" << std::endl;
}
SDL_Event e;
// Initialize ImGui

View file

@ -22,7 +22,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <glad/glad.h>
#include "../glad/glad.h"
static void* get_proc(const char *namez);

View file

@ -8,6 +8,9 @@
#pragma once
// This makes sure imgui uses glad
#define IMGUI_IMPL_OPENGL_LOADER_GLAD
//---- Define assertion handler. Defaults to calling assert().
// If your macro uses multiple statements, make sure is enclosed in a 'do { .. } while (0)' block so it can be used as a single statement.
//#define IM_ASSERT(_EXPR) MyAssert(_EXPR)
@ -99,4 +102,4 @@ namespace ImGui
{
void MyFunction(const char* name, const MyMatrix44& v);
}
*/
*/

View file

@ -107,7 +107,8 @@
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLEW)
#include <GL/glew.h> // Needs to be initialized with glewInit() in user's code.
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD)
#include <glad/glad.h> // Needs to be initialized with gladLoadGL() in user's code.
// this kind of smells but it works ig
#include "../glad/glad.h" // Needs to be initialized with gladLoadGL() in user's code.
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLAD2)
#include <glad/gl.h> // Needs to be initialized with gladLoadGL(...) or gladLoaderLoadGL() in user's code.
#elif defined(IMGUI_IMPL_OPENGL_LOADER_GLBINDING2)