From 5b7ffd55858c0162f52a1653f785be4ab5adc046 Mon Sep 17 00:00:00 2001 From: John Convertino Date: Sat, 15 Oct 2016 10:53:24 -0400 Subject: [PATCH] Reorganized project for cmake, updated gitignore to reflect this --- .gitignore | 16 +++----- example.xml => examples/example.xml | 0 cd.h => include/cd.h | 0 cdwriter.h => include/cdwriter.h | 0 edcecc.h => include/edcecc.h | 0 global.h => include/global.h | 0 iso.h => include/iso.h | 0 mkpsxiso.cbp | 63 ----------------------------- cdwriter.cpp => src/cdwriter.cpp | 0 edcecc.cpp => src/edcecc.cpp | 0 iso.cpp => src/iso.cpp | 0 main.cpp => src/main.cpp | 0 12 files changed, 6 insertions(+), 73 deletions(-) rename example.xml => examples/example.xml (100%) rename cd.h => include/cd.h (100%) rename cdwriter.h => include/cdwriter.h (100%) rename edcecc.h => include/edcecc.h (100%) rename global.h => include/global.h (100%) rename iso.h => include/iso.h (100%) delete mode 100644 mkpsxiso.cbp rename cdwriter.cpp => src/cdwriter.cpp (100%) rename edcecc.cpp => src/edcecc.cpp (100%) rename iso.cpp => src/iso.cpp (100%) rename main.cpp => src/main.cpp (100%) diff --git a/.gitignore b/.gitignore index 873570a..8b2f502 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,7 @@ -.objs -/ExampleFiles/ -files -Debug -pages -scrap.txt -test.xml -*.depend +/bin*/ +/CMakeFiles/ +Makefile +*.cmake +*.txt +*.cdp *.layout -*.exe -mkpsxiso diff --git a/example.xml b/examples/example.xml similarity index 100% rename from example.xml rename to examples/example.xml diff --git a/cd.h b/include/cd.h similarity index 100% rename from cd.h rename to include/cd.h diff --git a/cdwriter.h b/include/cdwriter.h similarity index 100% rename from cdwriter.h rename to include/cdwriter.h diff --git a/edcecc.h b/include/edcecc.h similarity index 100% rename from edcecc.h rename to include/edcecc.h diff --git a/global.h b/include/global.h similarity index 100% rename from global.h rename to include/global.h diff --git a/iso.h b/include/iso.h similarity index 100% rename from iso.h rename to include/iso.h diff --git a/mkpsxiso.cbp b/mkpsxiso.cbp deleted file mode 100644 index f2a7908..0000000 --- a/mkpsxiso.cbp +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - diff --git a/cdwriter.cpp b/src/cdwriter.cpp similarity index 100% rename from cdwriter.cpp rename to src/cdwriter.cpp diff --git a/edcecc.cpp b/src/edcecc.cpp similarity index 100% rename from edcecc.cpp rename to src/edcecc.cpp diff --git a/iso.cpp b/src/iso.cpp similarity index 100% rename from iso.cpp rename to src/iso.cpp diff --git a/main.cpp b/src/main.cpp similarity index 100% rename from main.cpp rename to src/main.cpp