10 lines
331 B
Meson
10 lines
331 B
Meson
|
# Getting core configuration
|
||
|
subdir('core')
|
||
|
|
||
|
# quickerNES Application Configuration
|
||
|
|
||
|
quickerNESApplicationDependency = declare_dependency(
|
||
|
include_directories : include_directories(['.', '../extern']),
|
||
|
sources : [ '../extern/metrohash128/metrohash128.cpp' ],
|
||
|
dependencies : [ quickerNESCoreDependency ]
|
||
|
)
|