Skip to content

Commit dc18223

Browse files
committed
Deploy library
1 parent 9defec0 commit dc18223

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

tests/deploy/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#include <traits.h>
2+
using namespace traits;
3+
4+
int main() { return 0; }

0 commit comments

Comments
 (0)