浏览代码

Do not use <filesystem> on systems that do not have it

wip/image-kernel
Sam Hocevar 11 个月前
父节点
当前提交
dfa14a19ba
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. +7
    -1
      include/lol/cli

+ 7
- 1
include/lol/cli 查看文件

@@ -1,7 +1,7 @@
//
// Lol Engine
//
// Copyright © 2010—2020 Sam Hocevar <sam@hocevar.net>
// Copyright © 2010–2024 Sam Hocevar <sam@hocevar.net>
//
// Lol Engine is free software. It comes without any warranty, to
// the extent permitted by applicable law. You can redistribute it
@@ -12,6 +12,12 @@

#pragma once

// Do not use <filesystem> on systems that do not have it
#include <version>
#if defined _LIBCPP_HAS_NO_FILESYSTEM_LIBRARY
# define CLI11_HAS_FILESYSTEM 0
#endif

#include "private/push_macros.h"
#include "3rdparty/cli11/include/CLI/CLI.hpp"
#include "private/pop_macros.h"


正在加载...
取消
保存