Remove PCH source file

Newer versions of Meson create this automatically for MSVC builds.
This commit is contained in:
Decaf Code
2019-05-01 21:00:11 -04:00
parent 2ed2be349e
commit dfb7fbf219
4 changed files with 3 additions and 13 deletions
+1 -4
View File
@@ -1,10 +1,7 @@
hook_lib = static_library( hook_lib = static_library(
'hook', 'hook',
include_directories : inc, include_directories : inc,
c_pch : [ c_pch : '../precompiled.h',
'../precompiled.c',
'../precompiled.h',
],
sources : [ sources : [
'args.c', 'args.c',
'args.h', 'args.h',
+1 -4
View File
@@ -1,10 +1,7 @@
hooklib_lib = static_library( hooklib_lib = static_library(
'hooklib', 'hooklib',
include_directories : inc, include_directories : inc,
c_pch : [ c_pch : '../precompiled.h',
'../precompiled.c',
'../precompiled.h',
],
sources : [ sources : [
'serial.c', 'serial.c',
'serial.h', 'serial.h',
+1 -4
View File
@@ -1,10 +1,7 @@
executable( executable(
'inject', 'inject',
include_directories : inc, include_directories : inc,
c_pch : [ c_pch : '../precompiled.h',
'../precompiled.c',
'../precompiled.h',
],
sources : [ sources : [
'debug.c', 'debug.c',
'debug.h', 'debug.h',
-1
View File
@@ -1 +0,0 @@
#include "precompiled.h"