NouVeL/NVL/CMakeLists.txt
2022-08-23 18:02:15 -04:00

11 lines
431 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 "NouVeL.cpp" "Parser.cpp" "Environment.cpp" "Environment.h" "Common.h")
# add_executable (NVL "NouVeL.cpp" "Parser.cpp" "Environment.cpp" "Environment.h" "Common.h" )
# TODO: Add tests and install targets if needed.