Skip to content

Commit e69c05c

Browse files
att
1 parent 6d42f6c commit e69c05c

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ int main(int argc, char *argv[]){
3737
}
3838
3939
~~~
40+
## Pre Compiled version
41+
42+
~~~c
43+
#include "doTheWorldDeclaration.h"
44+
45+
int main(){
46+
return 0;
47+
}
48+
~~~
49+
compile with:
50+
51+
~~~shel
52+
gcc main.c cJSON.o doTheWorld.o sha256.o
53+
~~~
54+
4055

4156
# Bulding the Project
4257
if you want to exec all tests, or generate your own amalgamation,

build.exe

0 Bytes
Binary file not shown.

build/INTERNAL.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ int main(int argc, char *argv[]){
3737
}
3838
3939
~~~
40+
## Pre Compiled version
41+
42+
~~~c
43+
#include "doTheWorldDeclaration.h"
44+
45+
int main(){
46+
return 0;
47+
}
48+
~~~
49+
compile with:
50+
51+
~~~shel
52+
gcc main.c cJSON.o doTheWorld.o sha256.o
53+
~~~
54+
4055

4156
# Bulding the Project
4257
if you want to exec all tests, or generate your own amalgamation,

teste.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
#include "release/doTheWorld.h"
3+
#include "pre_compiled_linux/doTheWorldDeclaration.h"
44

55
int main() {
66
char *lua =dtw_load_string_file_content("teste.lua");

0 commit comments

Comments
 (0)