Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yvictor/shioajicpp4tutorial
https://github.com/yvictor/shioajicpp4tutorial
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yvictor/shioajicpp4tutorial
- Owner: Yvictor
- Created: 2020-07-23T02:55:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-24T03:46:49.000Z (over 4 years ago)
- Last Synced: 2024-12-25T02:28:09.375Z (24 days ago)
- Language: Makefile
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ShioajiCpp4Tutorial
#### in this section we directly use Makefile to manage the command
### prepare the solclient library for later use
```
make prepare-solace-lib
```### build our share library with static link to solclient
See the compiler change detail inside Makefile
```
make shioaji-static
```### build our share library with dynamic link to solclient
```
make shioaji
```### check the link of solclient
```
ldd libshioaji.so
```### make simple without change
```
make clean
make
./simple
```