mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:48:14 +00:00
HackStudio: Show the currently open file in bold (in the project list)
Also import a little default C++ project called "little" :^)
This commit is contained in:
parent
31b5047894
commit
a6b153abf1
4 changed files with 33 additions and 2 deletions
13
Base/home/anon/little/Makefile
Normal file
13
Base/home/anon/little/Makefile
Normal file
|
@ -0,0 +1,13 @@
|
|||
PROGRAM = little
|
||||
OBJS = main.o
|
||||
|
||||
all: $(PROGRAM)
|
||||
|
||||
$(PROGRAM): $(OBJS)
|
||||
$(CXX) -o $@ $(OBJS)
|
||||
|
||||
%.o: %.cpp
|
||||
$(CXX) $(CXXFLAGS) -o $@ -c $<
|
||||
|
||||
clean:
|
||||
rm $(OBJS) $(PROGRAM)
|
7
Base/home/anon/little/main.cpp
Normal file
7
Base/home/anon/little/main.cpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
printf("Hello friends!\n");
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue