修改框架为DLL发布
This commit is contained in:
14
tests/main.cpp
Normal file
14
tests/main.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user