Initial Commit

BlitzLLVM is licensed under the LGPL to hopefully discourage people from claiming this works as their own and selling it.
This commit is contained in:
Michael Fabian Dirks
2017-04-10 14:35:22 +02:00
commit 46c626fa7b
6 changed files with 206 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 2.8.12)
project(BlitzLLVM)
# Version
INCLUDE("CMakeVersion.txt")
SET(DEPENDENCY_LLVM "${PROJECT_SOURCE_DIR}/thirdparty/llvm" CACHE PATH "Path to LLVM source code")
# Source Files
SET(BlitzLLVM_SOURCE
"source/main.cpp"
)
INCLUDE_DIRECTORIES(
"${CMAKE_SOURCE_DIR}"
"${PROJECT_SOURCE_DIR}"
"${PROJECT_SOURCE_DIR}/source"
"${DEPENDENCY_LLVM}/include"
"${PROJECT_BINARY_DIR}"
)
add_executable(BlitzLLVM ${BlitzLLVM_SOURCE})