/DesignPattern

ex project codes for MVC MVP MVVM

Primary LanguageC++

DesignPattern (MVC MVP MVVM) EX projects

How to run

  1. Move to target dir
    cd ${project_dir}
    ex)
    cd ./MVP


  2. Configure Project
    cmake -B ${build_dir} -DCMAKE_BUILD_TYPE=${build_type}
    ex)
    cmake -B build -DCMAKE_BUILD_TYPE=Release


  3. Build Project
    cmake --build ${build_dir} --config ${build_type}
    ex)
    cmake --build build --config Release


  4. Execute Project
    ./build/${project_name}
    ex)
    ex) ./build/mvc_project