-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from epasveer/286-auto-resize-of-output-windo…
…w-makes-this-debugger-unusable-for-my-project 286 auto resize of output window makes this debugger unusable for my project
- Loading branch information
Showing
13 changed files
with
212 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
helloworld | ||
triangle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.PHONY: all | ||
all: helloworld triangle | ||
|
||
helloworld: helloworld.cpp | ||
g++ -g -o helloworld helloworld.cpp -lncurses | ||
|
||
triangle: triangle.cpp | ||
g++ -g -o triangle triangle.cpp -lncurses | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -f helloworld triangle | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include <ncurses.h> | ||
|
||
int main() { | ||
|
||
initscr(); /* Start curses mode */ | ||
printw("Hello World !!!"); /* Print Hello World */ | ||
refresh(); /* Print it on to the real screen */ | ||
getch(); /* Wait for user input */ | ||
endwin(); /* End curses mode */ | ||
|
||
return 0; | ||
} | ||
|
Oops, something went wrong.