Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generic CMakeLists.txt for making a Simbody-using executable. | |
# This shows how to use the provided SimbodyConfig.cmake to locate a Simbody | |
# installation on your machine so you can use it from your own code. | |
# You will most likely want to copy some of these lines into your own | |
# CMakeLists.txt rather than use this one verbatim. | |
cmake_minimum_required(VERSION 2.8) | |
project(cloneptr) | |
# List your source and header files here. | |
set(my_source_files cloneptr.cpp) |