14 lines
272 B
C++
14 lines
272 B
C++
//
|
|
// Created by jie on 2023/10/9.
|
|
//
|
|
|
|
#ifndef LEARNOPENGL_PCH_H
|
|
#define LEARNOPENGL_PCH_H
|
|
#include "glad/glad.h"
|
|
#include "GLFW/glfw3.h"
|
|
#include <filesystem>
|
|
|
|
const std::filesystem::path PROJECT_DIR = std::filesystem::current_path().c_str();
|
|
|
|
#endif //LEARNOPENGL_PCH_H
|