Skip to content

Commit

Permalink
Merge pull request #57 from AsyncAlgoTrading/features
Browse files Browse the repository at this point in the history
Features
  • Loading branch information
timkpaine committed Jul 22, 2020
2 parents 0aee0f9 + 2fb352c commit 647d1a6
Show file tree
Hide file tree
Showing 164 changed files with 61,528 additions and 1,711 deletions.
336 changes: 0 additions & 336 deletions CMakeLists.txt

This file was deleted.

8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ rundebug: debug ## Clean and make debug target, run target
$(PYTHON) -m aat $(CONFIG)

buildext: ## build the package extensions
$(PYTHON) setup.py build_ext
$(PYTHON) setup.py build_ext -j8 --inplace

build: ## build the package
build: buildext ## build the package
$(PYTHON) setup.py build

debug: ## build debug build of the package
Expand Down Expand Up @@ -47,15 +47,15 @@ lintjs: ## run js linter
cd js; yarn lint

lintcpp: ## run cpp linter
cpplint --linelength=120 --recursive cpp/
cpplint --linelength=120 --recursive aat/cpp/{src,include}

fix: fixpy fixjs fixcpp ## run all fixers

fixpy: ## run autopep8 fix
$(PYTHON) -m autopep8 --in-place -r -a -a aat/ setup.py

fixcpp: ## run clang-format
clang-format -i -style=file `find ./cpp -name "*.*pp"`
clang-format -i -style=file `find ./aat/cpp/{src,include} -name "*.*pp"`

fixjs: ## run clang-format
cd js; yarn fix
Expand Down

0 comments on commit 647d1a6

Please sign in to comment.