diff options
Diffstat (limited to 'src/buildtool/system/system_command.hpp')
-rw-r--r-- | src/buildtool/system/system_command.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/buildtool/system/system_command.hpp b/src/buildtool/system/system_command.hpp index 7f16fc99..24931dc7 100644 --- a/src/buildtool/system/system_command.hpp +++ b/src/buildtool/system/system_command.hpp @@ -27,8 +27,12 @@ #include <utility> // std::move #include <vector> +#ifdef __unix__ #include <sys/wait.h> #include <unistd.h> +#else +#error "Non-unix is not supported yet" +#endif #include "gsl/gsl" #include "src/buildtool/file_system/file_system_manager.hpp" |