mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
Updating compile command
Removing the -I and -L arguments from the compile command. I realize that it is unnecessary to specify a list of directories (to be searched) for header files and so forth in the event that the standard xlnt installation process was followed.
This commit is contained in:
parent
4c5e5f3b2c
commit
b5997bd878
|
@ -31,7 +31,7 @@ Save the contents of the above file
|
|||
```
|
||||
Compile by typing the following command
|
||||
```
|
||||
g++ -std=c++14 -Ixlnt/include -Lxlnt/lib -lxlnt process.cpp -o process
|
||||
g++ -std=c++14 -lxlnt process.cpp -o process
|
||||
```
|
||||
Excecute by typing the following command
|
||||
```
|
||||
|
@ -99,7 +99,7 @@ Save the contents of the above file
|
|||
```
|
||||
Compile by typing the following command
|
||||
```
|
||||
g++ -std=c++14 -Ixlnt/include -Lxlnt/lib -lxlnt process.cpp -o process
|
||||
g++ -std=c++14 -lxlnt process.cpp -o process
|
||||
```
|
||||
Excecute by typing the following command
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue
Block a user