Skip to content

Commit

Permalink
Fixed CMAKE file for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
hosseinmoein committed Dec 4, 2024
1 parent 5a15164 commit 896e693
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2,072 deletions.
9 changes: 8 additions & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,14 @@ target_compile_options(dataframe_tester_3
add_test(NAME dataframe_tester_3 COMMAND dataframe_tester_3)

add_executable(dataframe_tester_4 dataframe_tester_4.cc)
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
# if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
if(IOS)
set_tests_properties(dataframe_tester_4 PROPERTIES DISABLED TRUE)
elseif( (!!!) OSX|MAC|MACOSX )
set_tests_properties(dataframe_tester_4 PROPERTIES DISABLED TRUE)
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set_tests_properties(dataframe_tester_4 PROPERTIES DISABLED TRUE)
elseif(APPLE)
set_tests_properties(dataframe_tester_4 PROPERTIES DISABLED TRUE)
endif()
target_link_libraries(dataframe_tester_4 PRIVATE DataFrame)
Expand Down
Loading

0 comments on commit 896e693

Please sign in to comment.