Skip to content
Snippets Groups Projects
Commit 131f02e7 authored by Stephan Bökelmann's avatar Stephan Bökelmann
Browse files

initial

parent 5655c2c8
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,4 @@ add_library(testlib INTERFACE)
target_include_directories(testlib INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include)
target_compile_features(testlib INTERFACE cxx_std_20)
export(TARGETS testlib NAMESPACE testlib:: FILE testlibConfig.cmake)
......@@ -90,3 +90,4 @@ For open source projects, say how it is licensed.
## Project status
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
#include<stdio.h>
#include<iostream>
namespace testlib{
int function(){
std::cout >> "geht";
return 1;
}
}
\ No newline at end of file
}
......@@ -50,7 +50,7 @@ add_library(testlib::testlib INTERFACE IMPORTED)
set_target_properties(testlib::testlib PROPERTIES
INTERFACE_COMPILE_FEATURES "cxx_std_20"
INTERFACE_INCLUDE_DIRECTORIES "/home/maxclerkwell/repos/testlib/include"
INTERFACE_INCLUDE_DIRECTORIES "/home/maxclerkwell/repos/testlib2/include"
)
# This file does not depend on other imported targets which have
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment