From 49eabe8edfc4ab802ec1407140bac690ee94a6a3 Mon Sep 17 00:00:00 2001 From: Kearwood Gilbert Date: Fri, 11 Jan 2019 15:54:17 -0800 Subject: [PATCH] added gitignore --- .gitignore | 1 + CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..378eac2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e20344..e347a4c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,4 +37,4 @@ set(SRCS src/vector2i.cpp ) -add_library(hydra STATIC ${SRCS} ${PUBLIC_HEADERS}) +add_library(hydra ${SRCS} ${PUBLIC_HEADERS})