Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit 993724e

Browse files
committed
fix
1 parent 894343e commit 993724e

File tree

6 files changed

+12
-2
lines changed

6 files changed

+12
-2
lines changed

build.bat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
echo "todo"

build.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
echo "todo"

sample/MachODemo sample/complex

File renamed without changes.

sample/simple

8.23 KB
Binary file not shown.

sample/simple.c

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// gcc simple.c -o simple
2+
3+
#include <stdio.h>
4+
5+
int main(int argc,char**argv){
6+
printf("hello world");
7+
return 0;
8+
}

src/MachOExplorer.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ MOEX_HEADER = $$files(src/*.h,true)
3232
MOEX_SOURCE = $$files(src/*.cpp,true)
3333

3434
SOURCES += $$LIBMOEX_SOURCE $$MOEX_SOURCE
35-
HEADERS += $$LIBMOEX_HEADER $$MOEX_HEADER \
36-
src/controller/windowshareddata.h
35+
HEADERS += $$LIBMOEX_HEADER $$MOEX_HEADER
36+
3737
FORMS += \
3838
src/dialog/checkupdatedialog.ui \
3939
src/dialog/aboutdialog.ui

0 commit comments

Comments
 (0)