Change directory structure so headers and source files are separate

This commit is contained in:
rexy712 2020-04-04 21:57:01 -07:00
parent 15f3592270
commit 4d0b5fd125
12 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ ifeq ($(OS),Windows_NT)
WINDOWS::=1 WINDOWS::=1
endif endif
SOURCE_DIRS::=rexy SOURCE_DIRS::=rexy/src
SOURCES::= SOURCES::=
OBJDIR::=obj OBJDIR::=obj
DEPDIR::=$(OBJDIR)/dep DEPDIR::=$(OBJDIR)/dep

View File

@ -16,7 +16,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "binary.hpp" #include "rexy/include/binary.hpp"
namespace rexy{ namespace rexy{

View File

@ -16,7 +16,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "filerd.hpp" #include "rexy/include/filerd.hpp"
#include <cstdio> //fopen, fclose #include <cstdio> //fopen, fclose
#include <utility> //exchange, swap #include <utility> //exchange, swap

View File

@ -16,7 +16,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "string_base.hpp" #include "rexy/include/string_base.hpp"
#include <utility> //exchange, swap #include <utility> //exchange, swap
#include <cstdlib> //memcpy #include <cstdlib> //memcpy