@@ -262,11 +262,16 @@ if host_machine.system() == 'linux'
262
262
subdir : ' openframeworks'
263
263
)
264
264
265
+ elif host_machine .system() == ' darwin'
266
+
267
+ deps += [dependency (' appleframeworks' , modules : [' AppKit' , ' Foundation' , ' AVKit' , ' GLKit' ])]
268
+ add_project_arguments (' -ObjC++' , language : ' cpp' )
269
+
265
270
endif
266
271
267
- # We need to treat this dependency independently
272
+ # We need to treat this dependency independently
268
273
# because if it's not installed in the host system,
269
- # we will use the .wrap file in the subprojects file AND
274
+ # we will use the .wrap file in the subprojects file AND
270
275
# need to change a define in the cmake subproject
271
276
uriparser_dep = dependency (' uriparser' , required : false )
272
277
if not uriparser_dep.found()
@@ -298,7 +303,7 @@ freeimage_dep = compiler.find_library('freeimage', has_headers: ['FreeImage.h'],
298
303
if not freeimage_dep.found()
299
304
freeimage_opts = cmake.subproject_options()
300
305
# doesn't compile with the define bellow
301
- # freeimage_opts.add_cmake_defines({'BUILD_SHARED_LIBS': true})
306
+ # freeimage_opts.add_cmake_defines({'BUILD_SHARED_LIBS': true})
302
307
# We need -fPIC to link against the produced static library
303
308
freeimage_opts.add_cmake_defines({' CMAKE_POSITION_INDEPENDENT_CODE' : true })
304
309
freeimage_proj = cmake.subproject (' freeimage' , options : freeimage_opts)
@@ -311,7 +316,8 @@ lib = library('openFrameworks',
311
316
sources,
312
317
include_directories : inc,
313
318
dependencies : deps,
314
- install : true )
319
+ install : true ,
320
+ )
315
321
316
322
openframeworks_dep = declare_dependency (link_with : lib, include_directories : inc, dependencies : deps)
317
323
0 commit comments