Change directory structure so headers and source files are separate
This commit is contained in:
parent
15f3592270
commit
4d0b5fd125
2
makefile
2
makefile
@ -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
|
||||||
|
|||||||
@ -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{
|
||||||
|
|
||||||
@ -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
|
||||||
@ -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
|
||||||
Loading…
x
Reference in New Issue
Block a user