修改框架为DLL发布

This commit is contained in:
xx
2024-05-28 18:28:11 +08:00
parent d203466193
commit 0fc030a3cf
5 changed files with 118 additions and 90 deletions

14
tests/main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <iostream>
#include "core/entry.h"
#include "util/system.h"
int main()
{
std::string config_filepath = system::current_dir() + "/config.ini";
if (fastweb(config_filepath.c_str()) != 0)
return -1;
while (true)
std::cin.get();
return 0;
}