mirror of
https://github.com/emp-toolkit/emp-ag2pc.git
synced 2026-01-09 07:18:00 -05:00
21 lines
773 B
YAML
21 lines
773 B
YAML
extraction:
|
|
cpp:
|
|
configure: # Customizable step used only by C/C++ extraction.
|
|
command:
|
|
- export DEPS_BUILD_DIR=$LGTM_WORKSPACE/deps
|
|
- mkdir -p $DEPS_BUILD_DIR
|
|
- git clone https://github.com/emp-toolkit/emp-tool.git
|
|
- cd emp-tool
|
|
- cmake -DENABLE_FLOAT=True -DCMAKE_INSTALL_PREFIX=$DEPS_BUILD_DIR .
|
|
- make -j4
|
|
- make install
|
|
- git clone https://github.com/emp-toolkit/emp-ot.git
|
|
- cd emp-ot
|
|
- cmake -DCMAKE_INSTALL_PREFIX=$DEPS_BUILD_DIR .
|
|
- make -j4
|
|
- make install
|
|
index: # Customizable step used by all languages.
|
|
build_command:
|
|
- export DEPS_BUILD_DIR=$LGTM_WORKSPACE/deps
|
|
- cmake -DCMAKE_INSTALL_PREFIX=$DEPS_BUILD_DIR . && make
|