Skip to content

Commit

Permalink
made further modifications but got it working
Browse files Browse the repository at this point in the history
  • Loading branch information
Goddard committed Oct 2, 2017
1 parent 4393172 commit 7aeb391
Show file tree
Hide file tree
Showing 9 changed files with 221 additions and 1,353 deletions.
9 changes: 6 additions & 3 deletions CMakeLists.txt
Expand Up @@ -7,18 +7,21 @@ add_definitions(-std=c++11)
set(CXX_FLAGS "-Wall")
set(CMAKE_CXX_FLAGS, "${CXX_FLAGS}")

set(sources src/main.cpp)
include_directories(/usr/include)
link_directories(/usr/lib64)
#target_include_directories(src)

set(sources src/main.cpp)

if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")

include_directories(/usr/local/include)
include_directories(/usr/local/opt/openssl/include)
link_directories(/usr/local/lib)
link_directories(/usr/local/opt/openssl/lib)
link_directories(/usr/local/Cellar/libuv/1.11.0/lib)

endif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
endif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")


add_executable(path_planning ${sources})
Expand Down
9 changes: 6 additions & 3 deletions CMakeLists.txt.user
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.0.2, 2017-09-26T11:32:46. -->
<!-- Written by QtCreator 4.0.2, 2017-10-01T22:23:29. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
Expand Down Expand Up @@ -344,9 +344,12 @@
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguation.Title">path_planning</value>
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguration.Arguments"></value>
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguration.UserWorkingDirectory"></value>
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguration.UserWorkingDirectory.default">/home/irenicus/Projects/udacity/CarND-Path-Planning-Project</value>
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguration.UserWorkingDirectory.default">/home/irenicus/Projects/udacity/CarND-Path-Planning-Project/build</value>
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes">
<value type="QString">PATH=/usr/lib/x86_64-linux-gnu/qt5/bin:/usr/bin:/home/irenicus/.local/bin:/home/irenicus/bin:/home/irenicus/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/include/</value>
<value type="QString">LD_LIBRARY_PATH=/usr/lib64/</value>
</valuelist>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">path_planning (disabled)</value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeRunConfiguration.path_planning</value>
Expand Down
156 changes: 0 additions & 156 deletions src/helpers.h

This file was deleted.

0 comments on commit 7aeb391

Please sign in to comment.