From 548a46b67da85d13483de03ac8b99d3627961259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johel=20Ernesto=20Guerrero=20Pe=C3=B1a?= Date: Mon, 29 May 2023 12:54:06 -0400 Subject: [PATCH] feat: update list of headers --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0906d89..a03849d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.23) project( cppfront LANGUAGES CXX - VERSION 0.2.0 + VERSION 0.3.0 ) ## @@ -40,9 +40,10 @@ target_sources( FILE_SET HEADERS BASE_DIRS cppfront/source FILES cppfront/source/common.h + cppfront/source/io.h cppfront/source/lex.h - cppfront/source/load.h cppfront/source/parse.h + cppfront/source/reflect.h cppfront/source/sema.h )