Skip to content

Commit

Permalink
Support arm64 with bump in min-api
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelgk committed Aug 18, 2021
1 parent 3ea7afb commit f19f942
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
12 changes: 0 additions & 12 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,11 @@ if (${CMAKE_GENERATOR} MATCHES "Xcode")
endif ()
endif ()


# Fetch the correct verion of the min-api
message(STATUS "Updating Git Submodules")
execute_process(
COMMAND git submodule update --init --recursive
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
)


# Misc setup and subroutines
include(${CMAKE_CURRENT_SOURCE_DIR}/source/min-api/script/min-package.cmake)


# Add unit tests for the API
enable_testing()
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/source/min-api)


# Generate a project for every folder in the "source/projects" folder
SUBDIRLIST(PROJECT_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/source/projects)
Expand Down
2 changes: 1 addition & 1 deletion source/min-api
Submodule min-api updated 47 files
+45 −0 .github/workflows/test.yml
+3 −3 .gitmodules
+18 −24 CMakeLists.txt
+4 −1 ReadMe.md
+3 −3 doc/GuideToWritingObjects.md
+16 −12 include/c74_min_api.h
+20 −22 include/c74_min_atom.h
+29 −39 include/c74_min_attribute.h
+28 −7 include/c74_min_attribute_impl.h
+84 −32 include/c74_min_buffer.h
+5 −5 include/c74_min_dictionary.h
+3 −0 include/c74_min_doc.h
+12 −0 include/c74_min_graphics.h
+5 −8 include/c74_min_impl.h
+5 −5 include/c74_min_limit.h
+8 −3 include/c74_min_message.h
+2 −2 include/c74_min_object_components.h
+31 −22 include/c74_min_object_wrapper.h
+11 −10 include/c74_min_operator_ui.h
+11 −6 include/c74_min_operator_vector.h
+3 −3 include/c74_min_outlet.h
+5 −5 include/c74_min_patcher.h
+7 −7 include/c74_min_path.h
+8 −1 include/c74_min_symbol.h
+1 −1 include/c74_min_threadsafety.h
+1 −1 include/c74_min_time.h
+91 −33 include/c74_min_timer.h
+1 −1 include/readerwriterqueue
+0 −1 max-api
+1 −0 max-sdk-base
+1 −1 script/min-package.cmake
+7 −7 script/min-posttarget.cmake
+3 −3 script/min-pretarget.cmake
+56 −0 test/CMakeLists.txt
+2 −4 test/atom.cpp
+0 −11 test/atom/CMakeLists.txt
+6,295 −2,720 test/catch.hpp
+5 −3 test/limit.cpp
+0 −11 test/limit/CMakeLists.txt
+39 −0 test/main.cpp
+0 −55 test/min-api-unittest.cmake
+9 −9 test/min-object-unittest.cmake
+1 −1 test/mock
+2 −3 test/object.cpp
+0 −11 test/object/CMakeLists.txt
+2 −3 test/symbol.cpp
+0 −11 test/symbol/CMakeLists.txt

0 comments on commit f19f942

Please sign in to comment.