11 lines
448 B
CMake
11 lines
448 B
CMake
# CMakeList.txt : CMake project for NouVeL, include source and define
|
|
# project specific logic here.
|
|
#
|
|
cmake_minimum_required (VERSION 3.8)
|
|
|
|
project (NVL)
|
|
include_directories("include")
|
|
add_library (NVL STATIC "Parser.cpp" "Environment.cpp" "Environment.h" "Common.h" "Compiler.cpp" "Compiler.h")
|
|
# add_executable (NVL "NouVeL.cpp" "Parser.cpp" "Environment.cpp" "Environment.h" "Common.h" )
|
|
|
|
# TODO: Add tests and install targets if needed.
|