added an option in with_open_version so that one can compile using a local version of OpEn; this is very useful for developers or users who want to get the bleeding-edge version of OpEn from github. Example:
As shown above, introduced two static variables in BuildConfiguration: DEBUG_MODE and RELEASE_MODE
When compiling with with_build_c_bindings() a CMakeLists file is generated. This allows the user to compile the auto-generated example file (example_optimizer.c) very easily. Here's an example:
cd /path/to/auto-generated/optimizer
cmake .
make
make run # to run the example
make clean # to remove executable and compiled files
The current version of opengen is 0.3.1 - bumped to 0.3.2-alpha.1.
PR to address #149
Main changes:
with_open_version
so that one can compile using a local version of OpEn; this is very useful for developers or users who want to get the bleeding-edge version of OpEn from github. Example:BuildConfiguration
:DEBUG_MODE
andRELEASE_MODE
with_build_c_bindings()
a CMakeLists file is generated. This allows the user to compile the auto-generated example file (example_optimizer.c
) very easily. Here's an example:0.3.1
- bumped to0.3.2-alpha.1
.