Split VWeb into smaller headers

We have no make install support... so we don't need to have everything as a single-header and lib file.
This commit is contained in:
Maurice Grönwoldt 2023-09-16 16:29:03 +02:00
commit 5bb68a7d02
43 changed files with 902 additions and 685 deletions

View file

@ -3,6 +3,7 @@ project(VWeb_Example)
set(CMAKE_CXX_STANDARD 20)
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
find_package(VWeb 1.0 REQUIRED)
add_executable(VWeb_Example main.cpp)
include_directories(${CMAKE_SOURCE_DIR}/..)

View file

@ -1,4 +1,4 @@
#include <VWeb.h>
#include "VWeb-1.0/VWeb.h"
class MyCompleteController : public VWeb::Route {
public: