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