Skip to content

Commit

Permalink
Add changelog, licence, and update name
Browse files Browse the repository at this point in the history
  • Loading branch information
ipadjen committed Jul 7, 2023
1 parent 831d11c commit e74ce2e
Show file tree
Hide file tree
Showing 6 changed files with 699 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-win-exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
./Release/Release/geowrapper.exe
./Release/Release/wrapwrap.exe
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Changelog

## [0.1.0] - 2023-07-06
First release
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)

project(geowrapper)
project(wrapwrap)

set(CMAKE_CXX_FLAGS "-O2")
set(CMAKE_BUILD_TYPE "Release")
Expand Down Expand Up @@ -36,17 +36,17 @@ else()
endif ()
endif ()

# Creating entries for target: geowrapper
# Creating entries for target: wrapwrap
FILE(GLOB SRC_FILES "*.cpp")
add_executable(geowrapper ${SRC_FILES})
add_executable(wrapwrap ${SRC_FILES})
set_target_properties(
geowrapper
wrapwrap
PROPERTIES CXX_STANDARD 17
)

target_link_libraries(geowrapper
target_link_libraries(wrapwrap
${CGAL_LIBRARIES}
${CGAL_3RD_PARTY_LIBRARIES}
)

install(TARGETS geowrapper DESTINATION bin)
install(TARGETS wrapwrap DESTINATION bin)
Loading

0 comments on commit e74ce2e

Please sign in to comment.