mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
TW-1543: cmake complains "test" is not a valid target (on arch linux)
- Thanks to Renato Alves.
This commit is contained in:
parent
db0cb5a555
commit
ff53919af1
3 changed files with 5 additions and 3 deletions
|
@ -1,8 +1,5 @@
|
||||||
cmake_minimum_required (VERSION 2.8)
|
cmake_minimum_required (VERSION 2.8)
|
||||||
set(CMAKE_LEGACY_CYGWIN_WIN32 0) # Remove when CMake >= 2.8.4 is required
|
set(CMAKE_LEGACY_CYGWIN_WIN32 0) # Remove when CMake >= 2.8.4 is required
|
||||||
if(POLICY CMP0037)
|
|
||||||
cmake_policy(SET CMP0037 OLD)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
include (CheckFunctionExists)
|
include (CheckFunctionExists)
|
||||||
include (CheckStructHasMember)
|
include (CheckStructHasMember)
|
||||||
|
|
|
@ -35,6 +35,8 @@
|
||||||
- TW-1527 Extra spaces added around slashes (thanks to Renato Alves).
|
- TW-1527 Extra spaces added around slashes (thanks to Renato Alves).
|
||||||
- TW-1529 Parser incorrectly inserting spaces into task description (thanks to
|
- TW-1529 Parser incorrectly inserting spaces into task description (thanks to
|
||||||
David Brenner).
|
David Brenner).
|
||||||
|
- TW-1543 cmake complains "test" is not a valid target (on arch linux) (thanks
|
||||||
|
to Renato Alves).
|
||||||
- TW-1569 update wait:<wait-date> manpage entry (thanks to David Patrick).
|
- TW-1569 update wait:<wait-date> manpage entry (thanks to David Patrick).
|
||||||
- TW-1572 Better urgency inheritance (thanks to Jens Erat).
|
- TW-1572 Better urgency inheritance (thanks to Jens Erat).
|
||||||
- TW-1575 `task log` mangles URLs when quoted (thanks to Luke Macken).
|
- TW-1575 `task log` mangles URLs when quoted (thanks to Luke Macken).
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
cmake_minimum_required (VERSION 2.8)
|
cmake_minimum_required (VERSION 2.8)
|
||||||
|
if(POLICY CMP0037)
|
||||||
|
cmake_policy(SET CMP0037 OLD)
|
||||||
|
endif()
|
||||||
include_directories (${CMAKE_SOURCE_DIR}
|
include_directories (${CMAKE_SOURCE_DIR}
|
||||||
${CMAKE_SOURCE_DIR}/src
|
${CMAKE_SOURCE_DIR}/src
|
||||||
${CMAKE_SOURCE_DIR}/src/commands
|
${CMAKE_SOURCE_DIR}/src/commands
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue