2018-11-13 14:17:15 -08:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
|
|
|
|
# ##### # # # #
|
|
|
|
# #### ##### ###### # # # # # # # #
|
|
|
|
# # # # # # ## # # # # # #
|
|
|
|
# # # # # ##### # # # # #### # ### #
|
|
|
|
# # # ##### # # # # # # # # # # #
|
|
|
|
# # # # # # ## # # # # # # #
|
|
|
|
# #### # ###### # # ##### ##### # # #
|
|
|
|
# #
|
2019-07-29 04:44:15 -07:00
|
|
|
# This file is part of openGJK. #
|
|
|
|
# #
|
|
|
|
# openGJK is free software: you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU General Public License as published by #
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
|
|
# any later version. #
|
|
|
|
# #
|
|
|
|
# openGJK is distributed in the hope that it will be useful, #
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See The #
|
|
|
|
# GNU General Public License for more details. #
|
|
|
|
# #
|
|
|
|
# You should have received a copy of the GNU General Public License #
|
|
|
|
# along with Foobar. If not, see <https://www.gnu.org/licenses/>. #
|
|
|
|
# #
|
|
|
|
# openGJK: open-source Gilbert-Johnson-Keerthi algorithm #
|
|
|
|
# Copyright (C) Mattia Montanari 2018 - 2019 #
|
|
|
|
# http://iel.eng.ox.ac.uk/?page_id=504 #
|
|
|
|
# #
|
2018-11-13 14:17:15 -08:00
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
|
|
|
|
|
|
|
|
project(openGJKdemo)
|
|
|
|
|
|
|
|
message( "[${CMAKE_PROJECT_NAME}] Compiling the executable ..")
|
|
|
|
|
|
|
|
# Set source file
|
|
|
|
set(SOURCE_FILES main.c )
|
|
|
|
|
|
|
|
# Create the executable
|
|
|
|
add_executable(demo ${SOURCE_FILES})
|
|
|
|
|
|
|
|
# Link to openGJK
|
|
|
|
target_link_libraries(demo openGJKlib )
|
|
|
|
|
|
|
|
# Report
|
|
|
|
message( ".. executable DONE!")
|