Remove use of relative paths
authorConstantine Grantcharov <cgrantcharov@trustpointinnovation.com>
Sun, 5 Mar 2017 17:29:09 +0000 (12:29 -0500)
committerConstantine Grantcharov <cgrantcharov@trustpointinnovation.com>
Sun, 5 Mar 2017 17:29:09 +0000 (12:29 -0500)
commit0161193cf97f46aa491501e665a75aa0afd9698d
tree373e79e94e4b4d1ee3d2b816fecbd40fa1fb85c9
parent2e6577dd120a26e0ab4cc985cffa2c2a82e8c59d
Remove use of relative paths

When doing out of source builds:

mkdir build
cd build && cmake -G "Unix Makefiles" ../ && make

The build script tripped up on relative paths of /generator/proto and
the files under generator/proto/*.proto.

By using ${PROJECT_SOURCE_DIR}, the paths become absolute and the issue
disappears.
CMakeLists.txt