Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
export.h
Go to the documentation of this file.
1// clang-format off
2#ifndef EXPORT_H_
3 #define EXPORT_H_
4
5#ifdef __cplusplus
6#include <filesystem>
7
8#define PROJECT_SOURCE_DIR std::filesystem::current_path().string() + "/"
9#else
10#include <stdlib.h>
11#include <string.h>
12
13#define PROJECT_SOURCE_DIR getenv("PWD")
14#endif
15
16#endif /* !EXPORT_H_ */
17// clang-format on