2021-05-11 00:50:56 -04:00
|
|
|
# CMakeList.txt : CMake project for NouVeL, include source and define
|
|
|
|
# project specific logic here.
|
|
|
|
#
|
|
|
|
cmake_minimum_required (VERSION 3.8)
|
|
|
|
|
2022-05-09 01:50:09 -04:00
|
|
|
project (NVL)
|
2022-08-18 12:17:43 -04:00
|
|
|
add_library (NVL STATIC "NouVeL.cpp" "Parser.cpp" "Environment.cpp" "Environment.h" "Common.h")
|
|
|
|
# add_executable (NVL "NouVeL.cpp" "Parser.cpp" "Environment.cpp" "Environment.h" "Common.h" )
|
2021-05-11 00:50:56 -04:00
|
|
|
|
|
|
|
# TODO: Add tests and install targets if needed.
|