You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 8, 2025. It is now read-only.
Matan Gover edited this page Aug 11, 2017
·
8 revisions
Compiling libmei should be fairly straightforward.
Mac
On a Mac, open the attached libmei.xcodeproj file in XCode 4+. You will notice that there are a number of build targets. Select the mei target to build the framework. Compile by clicking Build in the Product menu.
After compiling, you should copy the product to the system-wide Frameworks folder so that it can be found by other software. Go to the Project navigator (in the left pane), expand the Products folder, right click mei.framework and select Show in Finder. Copy the mei.framework file into /Library/Frameworks.
You may also select the mei_test target to build and run the tests. In order to run the tests, you will need to download the Google Test Framework (gtest).
Linux
Dependencies:
uuid-dev
libxml
Linux users can compile with CMake:
$ mkdir build; cd build
$ cmake ..
$ make && make install