We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9defec0 commit dc18223Copy full SHA for dc18223
tests/deploy/CMakeLists.txt
@@ -0,0 +1,6 @@
1
+cmake_minimum_required(VERSION 3.0)
2
+project(external CXX)
3
+find_package(traits REQUIRED)
4
+
5
+add_executable(main main.cpp)
6
+target_link_libraries(main Traits::traits)
tests/deploy/main.cpp
@@ -0,0 +1,4 @@
+#include <traits.h>
+using namespace traits;
+int main() { return 0; }
0 commit comments