File tree 3 files changed +53
-2
lines changed
3 files changed +53
-2
lines changed Original file line number Diff line number Diff line change 1
1
cmake.h
2
- auto.h
3
2
commit.h
4
3
Makefile
5
4
src /tasksh
6
5
* ~
7
6
. * .swp
8
- package-config /osx /binary /task
9
7
CMakeFiles
10
8
CMakeCache.txt
11
9
cmake_install.cmake
Original file line number Diff line number Diff line change
1
+ /* cmake.h.in. Creates cmake.h during a cmake run */
2
+
3
+ /* Product identification */
4
+ #define PRODUCT_TASKSH 1
5
+
6
+ /* Package information */
7
+ #define PACKAGE "${PACKAGE}"
8
+ #define VERSION "${VERSION}"
9
+ #define PACKAGE_BUGREPORT "${PACKAGE_BUGREPORT}"
10
+ #define PACKAGE_NAME "${PACKAGE_NAME}"
11
+ #define PACKAGE_TARNAME "${PACKAGE_TARNAME}"
12
+ #define PACKAGE_VERSION "${PACKAGE_VERSION}"
13
+ #define PACKAGE_STRING "${PACKAGE_STRING}"
14
+
15
+ #define CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}"
16
+
17
+ /* Localization */
18
+ #define PACKAGE_LANGUAGE ${PACKAGE_LANGUAGE}
19
+ #define LANGUAGE_ENG_USA ${LANGUAGE_ENG_USA}
20
+
21
+ /* git information */
22
+ #cmakedefine HAVE_COMMIT
23
+
24
+ /* cmake information */
25
+ #cmakedefine HAVE_CMAKE
26
+ #define CMAKE_VERSION "${CMAKE_VERSION}"
27
+
28
+ /* Compiling platform */
29
+ #cmakedefine LINUX
30
+ #cmakedefine DARWIN
31
+ #cmakedefine CYGWIN
32
+ #cmakedefine FREEBSD
33
+ #cmakedefine OPENBSD
34
+ #cmakedefine NETBSD
35
+ #cmakedefine HAIKU
36
+ #cmakedefine SOLARIS
37
+ #cmakedefine KFREEBSD
38
+ #cmakedefine GNUHURD
39
+ #cmakedefine UNKNOWN
40
+
41
+ /* Found the Readline library */
42
+ #cmakedefine HAVE_READLINE
43
+
44
+ /* Found the pthread library */
45
+ #cmakedefine HAVE_LIBPTHREAD
46
+
47
+ /* Found wordexp.h */
48
+ #cmakedefine HAVE_WORDEXP
49
+
Original file line number Diff line number Diff line change
1
+ /* commit.h.in. Creates commit.h during a cmake run */
2
+
3
+ /* git information */
4
+ #define COMMIT "${COMMIT}"
You can’t perform that action at this time.
0 commit comments