diff options
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 636cd94..8d379a4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ SET(OPENSIM_INSTALL_DIR $ENV{OPENSIM_HOME} CACHE PATH "Top-level directory of OpenSim install") # Change name of build target -SET(TARGET exampleMain CACHE TYPE STRING) +SET(TARGET LocomotorPrimitives CACHE TYPE STRING) # Identify the cpp file(s) that were to be built FILE(GLOB SOURCE_FILES *.h *.cpp) SET(SOURCE ${SOURCE_FILES}) @@ -28,6 +28,7 @@ SET(OPENSIM_HEADERS_DIR ${OPENSIM_INSTALL_DIR}/sdk/include) INCLUDE_DIRECTORIES(${SIMTK_HEADERS_DIR} ${OPENSIM_HEADERS_DIR}) # Libraries and dlls SET(OPENSIM_LIBS_DIR ${OPENSIM_INSTALL_DIR}/sdk/lib) +SET(OPENSIM_LIBS_DIR ${OPENSIM_INSTALL_DIR}/lib) SET(OPENSIM_DLLS_DIR ${OPENSIM_INSTALL_DIR}/bin) LINK_DIRECTORIES(${OPENSIM_LIBS_DIR} ${OPENSIM_DLLS_DIR}) |