mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 18:11:57 +00:00
[CMAKE] Implement PCH builds with target_precompile_headers. CORE-16905
This commit is contained in:
parent
4cd7b3a3df
commit
139a3d6661
123 changed files with 874 additions and 644 deletions
13
sdk/lib/3rdparty/libmpg123/CMakeLists.txt
vendored
13
sdk/lib/3rdparty/libmpg123/CMakeLists.txt
vendored
|
@ -39,9 +39,14 @@ list(APPEND SOURCE
|
|||
synth_8bit.c
|
||||
synth_real.c
|
||||
synth_s32.c
|
||||
tabinit.c
|
||||
precomp.h)
|
||||
tabinit.c)
|
||||
|
||||
list(APPEND PCH_SKIP_SOURCE
|
||||
optimize.c)
|
||||
|
||||
add_library(libmpg123
|
||||
${SOURCE}
|
||||
${PCH_SKIP_SOURCE})
|
||||
|
||||
add_library(libmpg123 ${SOURCE} optimize.c)
|
||||
add_dependencies(libmpg123 psdk)
|
||||
add_pch(libmpg123 precomp.h SOURCE)
|
||||
add_pch(libmpg123 precomp.h "${PCH_SKIP_SOURCE}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue