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:
Timothy McCallum 2017-05-04 08:31:35 +10:00 committed by GitHub
parent 4c5e5f3b2c
commit b5997bd878

View File

@ -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
```