diff --git a/eden/scm/lib/config/parser/CMakeLists.txt b/eden/scm/lib/config/parser/CMakeLists.txt deleted file mode 100644 index 9a1f72a2cd..0000000000 --- a/eden/scm/lib/config/parser/CMakeLists.txt +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright (c) Meta Platforms, Inc. and affiliates. -# -# This software may be used and distributed according to the terms of the -# GNU General Public License version 2. - -rust_static_library(rust_configparser CRATE configparser) -install_rust_static_library( - rust_configparser - EXPORT mercurial - INSTALL_DIR lib -) - -add_library(configparser ConfigParser.cpp) -set_target_properties( - configparser - PROPERTIES - PUBLIC_HEADER - ConfigParser.h -) -target_include_directories(configparser PUBLIC - $ - $ -) -target_link_libraries( - configparser - PRIVATE - rust_configparser - Folly::folly -) - -install( - TARGETS configparser - EXPORT mercurial - LIBRARY DESTINATION ${LIB_INSTALL_DIR} - PUBLIC_HEADER DESTINATION "include/eden/scm/lib/config/parser/" -)