-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #288 from OnionGrief/fa-regex-refactoring
Fa and regex refactoring
- Loading branch information
Showing
57 changed files
with
3,412 additions
and
3,987 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
set (CMAKE_CXX_STANDARD 17) | ||
set(CMAKE_CXX_STANDARD 17) | ||
|
||
project(chipollino) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Set the project name | ||
project (InputGeneratorApp) | ||
project(InputGeneratorApp) | ||
|
||
# Create a sources variable with a link to all cpp files to compile | ||
set(SOURCES | ||
src/main.cpp) | ||
src/main.cpp) | ||
|
||
# Add a library with the above sources | ||
add_executable(${PROJECT_NAME} ${SOURCES}) | ||
|
||
target_include_directories( ${PROJECT_NAME} | ||
PUBLIC ${PROJECT_SOURCE_DIR}/include | ||
) | ||
target_include_directories(${PROJECT_NAME} | ||
PUBLIC ${PROJECT_SOURCE_DIR}/include | ||
) | ||
|
||
target_link_libraries(${PROJECT_NAME} | ||
InputGenerator | ||
Interpreter | ||
) | ||
InputGenerator | ||
Interpreter | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# Set the project name | ||
project (InterpreterApp) | ||
project(InterpreterApp) | ||
|
||
# Create a sources variable with a link to all cpp files to compile | ||
set(SOURCES | ||
src/main.cpp) | ||
src/main.cpp) | ||
|
||
# Add a library with the above sources | ||
add_executable(${PROJECT_NAME} ${SOURCES}) | ||
|
||
target_include_directories( ${PROJECT_NAME} | ||
PUBLIC ${PROJECT_SOURCE_DIR}/include | ||
) | ||
target_include_directories(${PROJECT_NAME} | ||
PUBLIC ${PROJECT_SOURCE_DIR}/include | ||
) | ||
|
||
target_link_libraries(${PROJECT_NAME} | ||
Interpreter | ||
) | ||
Interpreter | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
# Set the project name | ||
project (TestsApp) | ||
project(TestsApp) | ||
|
||
# Create a sources variable with a link to all cpp files to compile | ||
set(SOURCES | ||
src/Example.cpp | ||
src/main.cpp) | ||
src/Example.cpp | ||
src/main.cpp) | ||
|
||
# Add a library with the above sources | ||
add_executable(${PROJECT_NAME} ${SOURCES}) | ||
|
||
target_include_directories( ${PROJECT_NAME} | ||
PUBLIC ${PROJECT_SOURCE_DIR}/include | ||
) | ||
target_include_directories(${PROJECT_NAME} | ||
PUBLIC ${PROJECT_SOURCE_DIR}/include | ||
) | ||
|
||
target_link_libraries(${PROJECT_NAME} | ||
InputGenerator | ||
Interpreter | ||
Tester | ||
Objects | ||
) | ||
InputGenerator | ||
Interpreter | ||
Tester | ||
Objects | ||
) | ||
|
||
enable_testing() | ||
|
||
add_test(NAME UnitTests | ||
COMMAND ${PROJECT_NAME}) | ||
COMMAND ${PROJECT_NAME}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.