Add support for macos

This commit is contained in:
Timofey Khoruzhii 2022-10-28 23:34:48 +03:00
parent 5659d5fdaf
commit d892676121
3 changed files with 17 additions and 2 deletions

View file

@ -3,8 +3,8 @@
#include <string>
#include <fstream>
#if !defined(__linux__)
#error Only linux supported
#if !defined(__linux__) && !defined(__APPLE__)
#error Only linux and Macos supported
#endif
namespace cppshell {