diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-06-30 21:12:50 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 21:12:50 +0300 |
commit | dd3fb084c96e5afdefce7541a05289c6cc96f5dc (patch) | |
tree | 0815aaf7c7d7c549ab6f7e9e573de9550489d83e /CMakeLists.txt | |
parent | c64d5facaa8e82e676c9187e93328e9e2a4e8c71 (diff) | |
parent | 34869c7fec2c83ea4d06d33a11e314f215d70c6e (diff) |
Merge pull request #204 from PikalaxALT/pikalax_work
Fix CRLF handling in .knarckeep/.knarcignore
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f1d54918..398b650f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,6 +6,10 @@ set(CMAKE_CXX_STANDARD 17) enable_language(ASM) +if(APPLE) + include_directories(/usr/local/include) +endif(APPLE) + add_compile_options(-fms-extensions) file(GLOB_RECURSE SOURCES RELATIVE ${CMAKE_SOURCE_DIR} "*.c" "*.cpp") |