From c39d9c58151f93d00d039fb6ee7fb4cc72757b73 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Mon, 13 Nov 2017 02:16:33 +0100 Subject: [PATCH] code_compiler: Add simple testing code to main loop. --- projects/code_compiler/source/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/code_compiler/source/main.cpp b/projects/code_compiler/source/main.cpp index 6c45926..42893d4 100644 --- a/projects/code_compiler/source/main.cpp +++ b/projects/code_compiler/source/main.cpp @@ -16,6 +16,7 @@ #include #include "boost/program_options.hpp" +#include "compiler.hpp" #include "version.h" #define LICENSE "Copyright (C) 2017 Michael Fabian Dirks\n\ @@ -97,9 +98,8 @@ int main(int argc, char** argv) { #pragma endregion Header, Warranty, Help #pragma region Process Input - - - + BlitzLLVM::Compiler comp; + comp.Compile(optInput, optInput + ".exe"); #pragma endregion Process Input #ifdef _DEBUG