Files
atom/Atom-Linux/atom.gyp
2012-09-20 16:24:01 -07:00

41 lines
972 B
Python

{
'targets': [
{
'target_name': 'atom',
'type': 'executable',
'variables': {
'pkg-config': 'pkg-config',
},
'dependencies': [
],
'defines': [
],
'include_dirs': [
'../cef',
],
'sources': [
'atom.cpp',
'client_handler.cpp',
'io_utils.cpp',
'native_handler.cpp',
'onig_regexp_extension.cpp',
],
'cflags': [
'<!@(<(pkg-config) --cflags gtk+-2.0 gthread-2.0 openssl)',
],
'link_settings': {
'ldflags': [
'<!@(<(pkg-config) --libs-only-L --libs-only-other gtk+-2.0 gthread-2.0 openssl)',
'-Llib',
],
'libraries': [
'<!@(<(pkg-config) --libs-only-l gtk+-2.0 gthread-2.0 openssl)',
'-lcef',
'-lcef_dll_wrapper',
'-lonig',
],
}
},
],
}