From 0e2aee9aeb0689711b93350d709021c41c8c9d69 Mon Sep 17 00:00:00 2001 From: iechevarria Date: Mon, 6 Nov 2017 13:12:00 -0500 Subject: [PATCH] Clean up project, fix CMakeLists.txt --- .DS_Store | Bin 10244 -> 0 bytes .idea/Clear.iml | 2 -- .idea/misc.xml | 4 ---- .idea/modules.xml | 8 -------- .idea/vcs.xml | 6 ------ CMakeLists.txt | 8 ++++---- bin/.DS_Store | Bin 6148 -> 0 bytes resources/.DS_Store | Bin 6148 -> 0 bytes src/.DS_Store | Bin 6148 -> 0 bytes 9 files changed, 4 insertions(+), 24 deletions(-) delete mode 100644 .DS_Store delete mode 100644 .idea/Clear.iml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml delete mode 100644 bin/.DS_Store delete mode 100644 resources/.DS_Store delete mode 100644 src/.DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index b7a6a9ff83ebf8d18de2a20204c0825fde6d23bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10244 zcmeHMYitx%6h5a9Iy+F9B9EmYZY&K@S}5gFK)~&Tmx5IL=RGUUkfs66kJ>e>nBQ->k^ug*|*`9I+1}8{{17QTh z2!s&`BM?R)jKE}x0PWfAQl<(TwqXRq2!s(Bj{sXAVstYamvl@}zI0H-j{rnVXqaEr z*I0*WOwzcdV}cTgE)=Rng(}J;1`2f=k4d?>q+@~#bwGLeKxrA}2?e=zdVh?I1I7gn z+b{xQ1SUp+o!v`dIrM=EUf}#byYsxCH{i6k>KQKuaC!QfZ~2SH^#&aMy1c=D-#39+ zJyR?tdnV{$Kq6ofF0x9*#|_wgm)i_*eO4!M19maSl#3xrcJ1V_JD9YbB#nHO9JEZ= ztFQkGi;7E1r<5s?h!QDR9&GP-hTFY_mvNgD>3#gk)QzO70w`uFnaI=%Kb(g=VE#dW(E;rPxMUNe8Y^<-1t!`)-t&Pe4s}g`{@;vNU|!L;n6WYjRhpYcGoYW! ztqR(_X$DdS%D#z#@TcVzOXY-6`BP9>A`os~+T@2j58M$*(`w~{L&-=}Qm8-464J0{ zU2SaDy0!m!6)7;)U{bCc6!HR6zQmM2B7QFgrN$TSzmWbpC>Lr5c zyvq6N?O6cl1G|$zW*ku%QnWH59jm-kA#i94e^je0BN0Nd;8j=FD2i4jICYgPA_Q5j zSnwLu)e3=AD;3;Eb$x{3tCa}uMs>47DAlG2Zj;&)q2G}PH-)yB;4HjNNV^DE;2ZcJ zeuiuC8zPor1z{_S^Kk(#z3! zIEu${3?C)LoxsQOBtA*Vdm7K+D|uMko<*6U_-YPozC9;fqe&F{ivU@@NltKY;Web> zD(9rjcxQ=V!8h5#2Gm z575mnCO0N1SD}W9uyOu5o*vlecwW}hn5=3!KQ86Q1m)_a$JL4cM}G$RzexgjDepT( aUMW!E@Hxqjnc?|Ad;XYYiJ7eD|Gxm;DFea) diff --git a/.idea/Clear.iml b/.idea/Clear.iml deleted file mode 100644 index f08604b..0000000 --- a/.idea/Clear.iml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 79b3c94..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 7dbb838..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 8b0089e..38c9d32 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,7 +57,7 @@ link_libraries(${SFML_LIBRARIES}) if(NOT SFML_FOUND) # SFML not found - message(FATAL_ERROR " * Make sure LIB includes the directory where the SFML libraries are installed.\n * Make sure INCLUDE includes the directory where the SFML header files are installed.") + message(FATAL_ERROR " * Make sure LIB includes the directory where the SFML libraries are installed.\n * Make sure INCLUDE includes the directory where the SFML header files are installed.") endif() ############### @@ -69,8 +69,8 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") # determine build type # 1) use build type if specified by the user. # 2) if in-source building, use default (debug) build type. -# 3) if out-source building, determine based on the build directory's name which build type. -# If build directory is called 'Release' or 'Profile' then use the 'Release' and 'Profile' +# 3) if out-source building, determine based on the build directory's name which build type. +# If build directory is called 'Release' or 'Profile' then use the 'Release' and 'Profile' # build type respectively, otherwise use 'debug'. if(CMAKE_BUILD_TYPE) string(TOUPPER "${CMAKE_BUILD_TYPE}" TYPE) @@ -111,7 +111,7 @@ endif() # executables (any CPP file in 'bin' dir) foreach(EXEC ${EXECLIST}) get_filename_component(EXECNAME ${EXEC} NAME_WE) - add_executable(${EXECNAME} ${EXEC} bin/clear.cpp) + add_executable(${EXECNAME} ${EXEC} bin/Clear.cpp) if(NOT SRC STREQUAL "") target_link_libraries(${EXECNAME} LINK_PUBLIC ${LIBNAME}) diff --git a/bin/.DS_Store b/bin/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0