mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
501 B
16 lines
501 B
|
8 years ago
|
#pragma once
|
||
|
9 years ago
|
#include <boost/filesystem.hpp>
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
class Meson {
|
||
|
|
public:
|
||
|
|
Meson(const boost::filesystem::path &path);
|
||
|
8 years ago
|
|
||
|
9 years ago
|
boost::filesystem::path project_path;
|
||
|
8 years ago
|
|
||
|
|
bool update_default_build(const boost::filesystem::path &default_build_path, bool force = false);
|
||
|
|
bool update_debug_build(const boost::filesystem::path &debug_build_path, bool force = false);
|
||
|
|
|
||
|
9 years ago
|
boost::filesystem::path get_executable(const boost::filesystem::path &build_path, const boost::filesystem::path &file_path);
|
||
|
|
};
|