svn commit: r459322 - head/editors/codelite/files

Mahdi Mokhtari mmokhi at FreeBSD.org
Thu Jan 18 11:16:25 UTC 2018


Author: mmokhi
Date: Thu Jan 18 11:16:24 2018
New Revision: 459322
URL: https://svnweb.freebsd.org/changeset/ports/459322

Log:
  editors/codelite: Fix build when devel/check is installed.
  Set correct include-path if devel/check is installed for check.h
  
  PR:		218297
  Submitted by:	w.schwarzenfeld at utanet.at
  Reported by:	w.schwarzenfeld at utanet.at

Added:
  head/editors/codelite/files/
  head/editors/codelite/files/patch-sdk_codelite__cppcheck_CMakeLists.txt   (contents, props changed)

Added: head/editors/codelite/files/patch-sdk_codelite__cppcheck_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/editors/codelite/files/patch-sdk_codelite__cppcheck_CMakeLists.txt	Thu Jan 18 11:16:24 2018	(r459322)
@@ -0,0 +1,14 @@
+--- sdk/codelite_cppcheck/CMakeLists.txt.orig	2018-01-17 21:37:24 UTC
++++ sdk/codelite_cppcheck/CMakeLists.txt
+@@ -5,8 +5,10 @@ cmake_minimum_required(VERSION 2.6.2)
+ # visual studio, and in our makefiles. 
+ project(codelitegcc)
+ 
++set (CMAKE_INCLUDE_DIRECTORIES ON)
++
+ # Include paths
+-include_directories("${CL_SRC_ROOT}/sdk/codelite_cppcheck/lib" "${CL_SRC_ROOT}/sdk/codelite_cppcheck/cli")
++include_directories(BEFORE "${CL_SRC_ROOT}/sdk/codelite_cppcheck/lib" "${CL_SRC_ROOT}/sdk/codelite_cppcheck/cli")
+ 
+ set( ADDITIONAL_LIBRARIES "" )
+ 


More information about the svn-ports-all mailing list