https://github.com/ampl/plugins
AMPL Plugin Library
https://github.com/ampl/plugins
Last synced: 10 months ago
JSON representation
AMPL Plugin Library
- Host: GitHub
- URL: https://github.com/ampl/plugins
- Owner: ampl
- License: bsd-3-clause
- Created: 2019-06-27T22:48:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-01T11:17:18.000Z (over 1 year ago)
- Last Synced: 2025-03-27T06:22:34.595Z (about 1 year ago)
- Language: C
- Homepage: https://plugins.ampl.com
- Size: 6.32 MB
- Stars: 2
- Watchers: 9
- Forks: 2
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Table handlers for AMPL
## Build instructions
Either clone this repository recursively:
```
git clone --recursive https://github.com/ampl/plugins.git
```
or, after cloning, check out the submodules:
```
git submodule update --init
```
To generate build files using cmake, for Linux/Unix/OSX systems (change 64 to 32 if a 32 bits build is needed):
```
mkdir build
cd build
cmake .. -DARCH=64
```
On Windows, with Visual Studio 2017+:
```
mkdir build
cd build
cmake ..
```
add `-A Win32` to the cmake statement to generate 32 bits libraries.