Simplify cmake_config.h stuff

This commit is contained in:
sfan5
2025-02-19 10:36:08 +01:00
parent ad403975fd
commit c93948c200
2 changed files with 1 additions and 6 deletions

View File

@ -1,11 +1,7 @@
#if MSDOS || __OS2__ || __NT__ || _WIN32
#if defined(MSDOS) || defined(__OS2__) || defined(__NT__) || defined(_WIN32)
#define PATH_SEPARATOR '\\'
#else
#define PATH_SEPARATOR '/'
#endif
#ifdef USE_CMAKE_CONFIG_H
#include "cmake_config.h"
#else
#error missing config
#endif