Files
gpgpu-two/include/helper.h
2025-12-21 15:41:59 +01:00

9 lines
185 B
C++

#pragma once
#include <string>
#if defined(WORKING_DIR)
inline std::string workingDir = std::string(WORKING_DIR) + "/";
#else
inline std::string workingDir = std::string("./");
#endif