mirror of
https://github.com/atom/atom.git
synced 2026-01-24 22:38:20 -05:00
41 lines
972 B
Python
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',
|
|
],
|
|
}
|
|
},
|
|
],
|
|
}
|