Skip to content

Commit

Permalink
A few stubs
Browse files Browse the repository at this point in the history
Now moving to a more organized structure. The main folder is getting too
cluttered. Frameworks and private frameworks will eventually be moved
into their respective folders.

Fixes #577
Fixes #587
  • Loading branch information
Andrew Hyatt committed Dec 27, 2019
1 parent 2a4da38 commit d615079
Show file tree
Hide file tree
Showing 899 changed files with 36,645 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ include_directories(AFTER
${CMAKE_CURRENT_SOURCE_DIR}/OpenDirectory/include
${CMAKE_CURRENT_SOURCE_DIR}/MetalKit/include
${CMAKE_CURRENT_SOURCE_DIR}/CoreLocation/include
${CMAKE_CURRENT_SOURCE_DIR}/frameworks/include
${CMAKE_CURRENT_SOURCE_DIR}/private-frameworks/include
)

add_subdirectory(external/libkqueue)
Expand Down Expand Up @@ -461,6 +463,9 @@ add_subdirectory(external/cocotron/CoreGraphics)
add_subdirectory(ColorSync)
add_subdirectory(CoreLocation)

add_subdirectory(frameworks)
add_subdirectory(private-frameworks)

# /Applications
#add_subdirectory(external/TextEdit)

Expand Down
4 changes: 4 additions & 0 deletions src/frameworks/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
project(frameworks)

add_subdirectory(Kerberos)
add_subdirectory(MapKit)
16 changes: 16 additions & 0 deletions src/frameworks/Kerberos/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
project(Kerberos)

set(DYLIB_COMPAT_VERSION "5.0.0")
set(DYLIB_CURRENT_VERSION "6.0.0")

add_framework(Kerberos
FAT
CURRENT_VERSION
VERSION "A"

SOURCES
src/Kerberos.c

DEPENDENCIES
system
)
Loading

0 comments on commit d615079

Please sign in to comment.