Skip to content

Commit 3747268

Browse files
authored
Merge pull request #232 from hsdk123/patch-1
Create CMakeLists.txt
2 parents d1ac12a + 02b56a9 commit 3747268

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

CMakeLists.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
cmake_minimum_required(VERSION 3.9)
2+
project(concurrentqueue VERSION 1.0.0)
3+
4+
include(GNUInstallDirs)
5+
6+
add_library(${PROJECT_NAME} INTERFACE)
7+
8+
target_include_directories(concurrentqueue INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
9+
10+
install(FILES blockingconcurrentqueue.h concurrentqueue.h lightweightsemaphore.h LICENSE.md
11+
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${PROJECT_NAME})
12+

0 commit comments

Comments
 (0)