From 63f111b205009c9c330201789fff4a5bf51b77a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Wed, 1 Nov 2023 14:29:06 +0100 Subject: [PATCH] output binaries in their own folder --- test-project/CMakeLists.txt | 4 +++- test-project/{ => binaries}/dml-test | Bin 2 files changed, 3 insertions(+), 1 deletion(-) rename test-project/{ => binaries}/dml-test (100%) diff --git a/test-project/CMakeLists.txt b/test-project/CMakeLists.txt index fa76768..2f79e9e 100755 --- a/test-project/CMakeLists.txt +++ b/test-project/CMakeLists.txt @@ -4,10 +4,12 @@ project(dml-test) set(CMAKE_CXX_STANDARD 20) -include_directories("../DML/include/") +include_directories("../../DML/include/") set(SOURCES main.cpp) add_executable(dml-test ${SOURCES}) target_link_libraries(dml-test libdml.a ${CMAKE_DL_LIBS}) + +install(TARGETS dml-test DESTINATION ${CMAKE_INSTALL_PREFIX}) \ No newline at end of file diff --git a/test-project/dml-test b/test-project/binaries/dml-test similarity index 100% rename from test-project/dml-test rename to test-project/binaries/dml-test