From d697cc517fa9bce20a5956378954a4850724166d Mon Sep 17 00:00:00 2001 From: Orange Date: Wed, 12 Jun 2024 22:32:08 +0300 Subject: [PATCH] fixed cmake --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 87ccf28..2dfef16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,7 @@ project(uml) set(CMAKE_CXX_STANDARD 26) option(BUILD_TESTS "Build test programs" ON) -add_library(uml STATIC source/Vector3.cpp - include/uml/prediction/engine.h) +add_library(uml STATIC source/Vector3.cpp) add_subdirectory(source) add_subdirectory(extlibs)