Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneStamp authored Nov 5, 2024
1 parent 8a7ad20 commit 5186344
Show file tree
Hide file tree
Showing 7 changed files with 107 additions and 0 deletions.
30 changes: 30 additions & 0 deletions App/lib/config/Makefile.win
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Project: deb_miscellen
# Makefile created by Dev-C++ 4.9.9.2

CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = main.o $(RES)
LINKOBJ = main.o $(RES)
LIBS = -L"C:/Dev-Cpp/lib"
INCS = -I"C:/Dev-Cpp/include"
CXXINCS = -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include"
BIN = deb_miscellen.exe
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
RM = rm -f

.PHONY: all all-before all-after clean clean-custom

all: all-before deb_miscellen.exe all-after


clean: clean-custom
${RM} $(OBJ) $(BIN)

$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o "deb_miscellen.exe" $(LIBS)

main.o: main.cpp
$(CPP) -c main.cpp -o main.o $(CXXFLAGS)
1 change: 1 addition & 0 deletions App/lib/config/bin/connect.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
puts "none"
5 changes: 5 additions & 0 deletions App/lib/config/bin/db.sqlite
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CREATE TABLE users (
id INTEGER PRIMARY KEY,
name TEXT,
age INTEGER
);
1 change: 1 addition & 0 deletions App/lib/config/bin/quarrel.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
puts 'quarrel'
1 change: 1 addition & 0 deletions App/lib/config/bin/raw_select.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
puts 'Select'
59 changes: 59 additions & 0 deletions App/lib/config/deb_miscellen.dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
[Project]
FileName=deb_miscellen.dev
Name=deb_miscellen
UnitCount=1
Type=1
Ver=1
ObjFiles=
Includes=
Libs=
PrivateResource=
ResourceIncludes=
MakeIncludes=
Compiler=
CppCompiler=
Linker=
IsCpp=1
Icon=
ExeOutput=
ObjectOutput=
OverrideOutput=0
OverrideOutputName=
HostApplication=
Folders=
CommandLine=
UseCustomMakefile=0
CustomMakefile=
IncludeVersionInfo=0
SupportXPThemes=0
CompilerSet=0
CompilerSettings=

[Unit1]
FileName=main.cpp
CompileCpp=1
Folder=
Compile=1
Link=1
Priority=1000
OverrideBuildCmd=0
BuildCmd=

[VersionInfo]
Major=0
Minor=1
Release=1
Build=1
LanguageID=1033
CharsetID=1252
CompanyName=
FileVersion=
FileDescription=Developed using the Dev-C++ IDE
InternalName=
LegalCopyright=
LegalTrademarks=
OriginalFilename=
ProductName=
ProductVersion=
AutoIncBuildNr=0

10 changes: 10 additions & 0 deletions App/lib/config/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
system("PAUSE");
return EXIT_SUCCESS;
}

0 comments on commit 5186344

Please sign in to comment.