Browse Source

fixed CMake target_compile_definitions for Mac build

pull/1278/head
Silvio Kunaschk 6 years ago
parent
commit
b5143b3f1e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      CMakeLists.txt

+ 1
- 1
CMakeLists.txt View File

@@ -44,7 +44,7 @@ endif ()
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
target_compile_definitions(${RACK_APP} PRIVATE ARCH_LIN)
elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
target_compile_definitions(${RACK_APP} ARCH_MAC)
target_compile_definitions(${RACK_APP} PRIVATE ARCH_MAC)
endif ()

target_include_directories(${RACK_APP} PRIVATE include)


Loading…
Cancel
Save