Skip to content

Commit

Permalink
Add simple CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jhasse committed Aug 13, 2018
1 parent a9d2cf8 commit 0105437
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.6)

project(poly2tri LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 14)

file(GLOB SOURCES poly2tri/common/*.cc poly2tri/sweep/*.cc)
add_library(poly2tri ${SOURCES})
target_include_directories(poly2tri INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})

0 comments on commit 0105437

Please sign in to comment.