Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
1eb804e3
Commit
1eb804e3
authored
Mar 18, 2013
by
Nikias Bassen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed plutil to plistutil to not mask Apple's plutil on OSX
parent
b069971d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
16 deletions
+16
-16
CMakeLists.txt
CMakeLists.txt
+2
-2
libplistPackaging.cmake
cmake/libplistPackaging.cmake
+2
-2
CMakeLists.txt
plistutil/CMakeLists.txt
+9
-0
plistutil.c
plistutil/plistutil.c
+2
-2
plistutil.h
plistutil/plistutil.h
+1
-1
CMakeLists.txt
plutil/CMakeLists.txt
+0
-9
No files found.
CMakeLists.txt
View file @
1eb804e3
...
...
@@ -5,7 +5,7 @@ SET( LIBPLIST_VERSION_MINOR "9" )
SET
(
LIBPLIST_SOVERSION
"1"
)
SET
(
LIBPLIST_VERSION
"
${
LIBPLIST_VERSION_MAJOR
}
.
${
LIBPLIST_VERSION_MINOR
}
"
)
SET
(
LIBPLIST_LIBVERSION
"
${
LIBPLIST_SOVERSION
}
.
${
LIBPLIST_VERSION
}
"
)
SET
(
PLUTIL_VERSION
${
LIBPLIST_VERSION
}
)
SET
(
PL
IST
UTIL_VERSION
${
LIBPLIST_VERSION
}
)
SET
(
CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/cmake
${
CMAKE_SOURCE_DIR
}
/cmake/modules
)
...
...
@@ -53,7 +53,7 @@ SET ( PLIST_BYTE_ORDER ${endianess} )
ADD_SUBDIRECTORY
(
libcnary
)
ADD_SUBDIRECTORY
(
src
)
ADD_SUBDIRECTORY
(
plutil
)
ADD_SUBDIRECTORY
(
pl
ist
util
)
ADD_SUBDIRECTORY
(
include
)
ADD_SUBDIRECTORY
(
test
)
...
...
cmake/libplistPackaging.cmake
View file @
1eb804e3
...
...
@@ -7,9 +7,9 @@ MACRO( LIBPLIST_PACKAGE _major _minor)
SET
(
CPACK_RESOURCE_FILE_LICENSE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/COPYING.LESSER"
)
SET
(
CPACK_COMPONENT_LIB_DISPLAY_NAME
"PList library"
)
SET
(
CPACK_COMPONENT_DEV_DISPLAY_NAME
"PList development files"
)
SET
(
CPACK_COMPONENT_PLUTIL_DISPLAY_NAME
"PList conversion tool"
)
SET
(
CPACK_COMPONENT_PL
IST
UTIL_DISPLAY_NAME
"PList conversion tool"
)
set
(
CPACK_COMPONENT_DEV_DEPENDS lib
)
set
(
CPACK_COMPONENT_PLUTIL_DEPENDS lib
)
set
(
CPACK_COMPONENT_PL
IST
UTIL_DEPENDS lib
)
INCLUDE
(
CPack
)
ENDMACRO
(
LIBPLIST_PACKAGE
)
plistutil/CMakeLists.txt
0 → 100644
View file @
1eb804e3
SET
(
plistutil_SRC
plistutil.c
)
ADD_EXECUTABLE
(
plistutil
${
plistutil_SRC
}
)
TARGET_LINK_LIBRARIES
(
plistutil plist
)
SET_TARGET_PROPERTIES
(
plistutil PROPERTIES VERSION
${
PLISTUTIL_VERSION
}
)
INSTALL
(
TARGETS plistutil RUNTIME DESTINATION bin COMPONENT plistutil
)
pl
util/pl
util.c
→
pl
istutil/plist
util.c
View file @
1eb804e3
/*
* pl
util.C
* pl
istutil.c
* source for plist convertion tool
*
* Copyright (c) 2008 Zach C. All Rights Reserved.
...
...
@@ -21,7 +21,7 @@
#include "plist/plist.h"
#include "plutil.h"
#include "pl
ist
util.h"
#include <stdio.h>
#include <stdlib.h>
...
...
pl
util/pl
util.h
→
pl
istutil/plist
util.h
View file @
1eb804e3
/*
* plutil.h
* pl
ist
util.h
* header for plist convertion tool
*
* Copyright (c) 2008 Zach C. All Rights Reserved.
...
...
plutil/CMakeLists.txt
deleted
100644 → 0
View file @
b069971d
SET
(
plutil_SRC
plutil.c
)
ADD_EXECUTABLE
(
plutil
${
plutil_SRC
}
)
TARGET_LINK_LIBRARIES
(
plutil plist
)
SET_TARGET_PROPERTIES
(
plutil PROPERTIES VERSION
${
PLUTIL_VERSION
}
)
INSTALL
(
TARGETS plutil RUNTIME DESTINATION bin COMPONENT plutil
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment