diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2010-07-04 07:12:58 +0800 |
---|---|---|
committer | Sam Spilsbury <smspillaz@gmail.com> | 2010-07-04 07:12:58 +0800 |
commit | e75073ccfa5e422979c76da31456feb4d5027aec (patch) | |
tree | 7866f122b7a68d1bd9a9873f0ffaf664e6eaac32 | |
parent | 4315f491f21feac86b89598ada1ae9faf6e4655d (diff) | |
download | zcomp-e75073ccfa5e422979c76da31456feb4d5027aec.tar.gz zcomp-e75073ccfa5e422979c76da31456feb4d5027aec.tar.bz2 |
Fix debugging prefix
-rw-r--r-- | src/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e54af4e..17cad68 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -25,7 +25,7 @@ link_directories ( ${COMPIZ_LINK_DIRS} ) -add_executable (compiz_aaa +add_executable (compiz region.cpp atoms.cpp timer.cpp @@ -53,10 +53,10 @@ add_executable (compiz_aaa ) target_link_libraries ( - compiz_aaa ${COMPIZ_LIBRARIES} m pthread dl + compiz ${COMPIZ_LIBRARIES} m pthread dl ) install ( - TARGETS compiz_aaa + TARGETS compiz DESTINATION ${COMPIZ_DESTDIR}${exec_prefix} ) |