diff --git a/clox/.gitignore b/clox/.gitignore index 69fa449..160a9bd 100644 --- a/clox/.gitignore +++ b/clox/.gitignore @@ -1 +1,2 @@ _build/ +dist/ diff --git a/clox/src/CMakeLists.txt b/clox/src/CMakeLists.txt index 435a82e..12ad9ff 100644 --- a/clox/src/CMakeLists.txt +++ b/clox/src/CMakeLists.txt @@ -11,3 +11,5 @@ add_executable(Lox vm.h vm.c main.c) + +install(TARGETS Lox)