Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add atom table spec to window #6649

Merged
merged 3 commits into from
Sep 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions osquery/tables/applications/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ function(generateOsqueryTablesApplications)
browser_chrome.cpp
browser_utils.cpp
browser_firefox.cpp
atom_packages.cpp
)

if(DEFINED PLATFORM_POSIX)
Expand All @@ -33,18 +34,13 @@ function(generateOsqueryTablesApplications)

if(DEFINED PLATFORM_MACOS)
list(APPEND source_files
atom_packages.cpp
darwin/browser_plugins.cpp
)
elseif(DEFINED PLATFORM_WINDOWS)
list(APPEND source_files
windows/carbon_black.cpp
windows/office_mru.cpp
)
elseif(DEFINED PLATFORM_LINUX)
list(APPEND source_files
atom_packages.cpp
)
endif()

add_osquery_library(osquery_tables_applications EXCLUDE_FROM_ALL
Expand Down
2 changes: 1 addition & 1 deletion specs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function(generateNativeTables)

set(platform_dependent_spec_files
"arp_cache.table:linux,macos,windows"
"atom_packages.table:linux,macos"
"atom_packages.table:linux,macos,windows"
"office_mru.table:windows"
"darwin/account_policy_data.table:macos"
"darwin/ad_config.table:macos"
Expand Down