working on static library support

This commit is contained in:
Gert Wohlgemuth
2018-05-17 08:02:51 -07:00
parent 7dc71e904e
commit 0c4b776101
2 changed files with 13 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
import os
import ctypes
for d, dirs, files in os.walk('lib'):
for f in files:
if f.endswith('.a'):
continue
ctypes.cdll.LoadLibrary(os.path.join(d, f))
from freqtrade.strategy.resolver import StrategyResolver
import simplejson as json