Reorganize the project.

This commit is contained in:
ykiko
2024-10-26 21:00:23 +08:00
parent 2fd0c377aa
commit 9f09c7ba0f
7 changed files with 6 additions and 5 deletions

View File

@@ -24,7 +24,8 @@ if(NOT EXISTS "${CMAKE_BINARY_DIR}/lib/clang")
endif()
# build clice core part as library
file(GLOB_RECURSE CLICE_CORE_SOURCES
file(GLOB_RECURSE CLICE_CORE_SOURCES
"${CMAKE_SOURCE_DIR}/src/AST/*.cpp"
"${CMAKE_SOURCE_DIR}/src/Compiler/*.cpp"
"${CMAKE_SOURCE_DIR}/src/Index/*.cpp"
"${CMAKE_SOURCE_DIR}/src/Feature/*.cpp"

View File

@@ -1,4 +1,4 @@
#include <Compiler/Resolver.h>
#include <AST/Resolver.h>
#include <clang/Sema/Template.h>
#include <clang/Sema/TreeTransform.h>
#include <clang/Sema/TemplateDeduction.h>

View File

@@ -2,7 +2,7 @@
#include <stack>
#include <Compiler/Selection.h>
#include <AST/Selection.h>
namespace clice {

View File

@@ -1,5 +1,5 @@
#include "../Test.h"
#include <Compiler/Resolver.h>
#include <AST/Resolver.h>
#include <Compiler/Compiler.h>
namespace {

View File

@@ -1,5 +1,5 @@
#include "../Test.h"
#include <Compiler/Selection.h>
#include <AST/Selection.h>
#include <Compiler/Compiler.h>
namespace {