mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
Moved the http server to a subfolder in core.
This commit is contained in:
parent
f998aed1f9
commit
3a00179b3b
@ -130,7 +130,7 @@ opts.Add("LINKFLAGS", "Custom flags for the linker")
|
||||
opts.Update(env_base)
|
||||
|
||||
# add default include paths
|
||||
env_base.Prepend(CPPPATH=["#", "libs"])
|
||||
env_base.Prepend(CPPPATH=["#"])
|
||||
env_base.Prepend(CPPPATH=["#libs"])
|
||||
env_base.Prepend(LINKFLAGS=["-lpthread"])
|
||||
|
||||
|
@ -5,6 +5,7 @@ Import("env")
|
||||
env.core_sources = []
|
||||
|
||||
env.add_source_files(env.core_sources, "*.cpp")
|
||||
env.add_source_files(env.core_sources, "./http/*.cpp")
|
||||
|
||||
# Build it all as a library
|
||||
lib = env.add_library("core", env.core_sources)
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include "http_server.h"
|
||||
|
||||
#include "application.h"
|
||||
#include "request.h"
|
||||
#include "core/application.h"
|
||||
#include "core/request.h"
|
||||
|
||||
#define LOG_VERBOSE 0
|
||||
|
Loading…
Reference in New Issue
Block a user