From acc6a090ad5698da3d076d603f4e29d5de1285ca Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Tue, 30 Jun 2020 12:13:13 -0400 Subject: Update CMakeLists so that my mac can see /usr/local/include/elf.h --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) 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") -- cgit v1.2.3